* @copyright 2007-2020 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * Class ColissimoLink */ class ColissimoLink extends Link { /** * getBaseLink() is public only since 1.6.1.15 (protected before) * This method allows us to call it from outside of Link * * @param null $id_shop * @param null $ssl * @param bool $relative_protocol * @return string */ public function getBaseLink($id_shop = null, $ssl = null, $relative_protocol = false) { return parent::getBaseLink($id_shop, $ssl, $relative_protocol); } }