* @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 ColissimoNullHandler */ class ColissimoNullHandler extends AbstractColissimoHandler { /** * @param string $level * @param string $message * @param string $channel * @param array $details * @return bool */ public function log($level, $message, $channel, $details) { return true; } /** * @param string $level * @param string $message * @param string $channel * @param string $xmlString * @return bool */ public function logXml($level, $message, $channel, $xmlString) { return true; } /** * @return bool */ public function close() { return true; } }