From 135b921db75da5995eab7e36393ecd4d2b0bc66f Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Tue, 4 Nov 2014 21:33:05 -0500 Subject: Switch to composer --- .../classes/Swift/Plugins/Loggers/EchoLogger.php | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 vendor/swiftmailer/classes/Swift/Plugins/Loggers/EchoLogger.php (limited to 'vendor/swiftmailer/classes/Swift/Plugins/Loggers/EchoLogger.php') diff --git a/vendor/swiftmailer/classes/Swift/Plugins/Loggers/EchoLogger.php b/vendor/swiftmailer/classes/Swift/Plugins/Loggers/EchoLogger.php deleted file mode 100644 index e8b6c18a..00000000 --- a/vendor/swiftmailer/classes/Swift/Plugins/Loggers/EchoLogger.php +++ /dev/null @@ -1,58 +0,0 @@ -_isHtml = $isHtml; - } - - /** - * Add a log entry. - * - * @param string $entry - */ - public function add($entry) - { - if ($this->_isHtml) { - printf('%s%s%s', htmlspecialchars($entry, ENT_QUOTES), '
', PHP_EOL); - } else { - printf('%s%s', $entry, PHP_EOL); - } - } - - /** - * Not implemented. - */ - public function clear() - { - } - - /** - * Not implemented. - */ - public function dump() - { - } -} -- cgit v1.2.3