diff options
author | Jordi Boggiano <j.boggiano@seld.be> | 2011-02-20 20:52:52 +0100 |
---|---|---|
committer | Jordi Boggiano <j.boggiano@seld.be> | 2011-02-20 20:53:11 +0100 |
commit | 3fa6e4b91f8ce5dfdbad3560e716fb11f8c62fe1 (patch) | |
tree | 6939394dd8f06b443a9e515b4a5c3f6cdf1deb59 /src/Monolog/Writer/WriterInterface.php | |
parent | 860194e879ac673ffb614336d2700d3fb8bfa3ad (diff) | |
download | monolog-3fa6e4b91f8ce5dfdbad3560e716fb11f8c62fe1.zip monolog-3fa6e4b91f8ce5dfdbad3560e716fb11f8c62fe1.tar.gz monolog-3fa6e4b91f8ce5dfdbad3560e716fb11f8c62fe1.tar.bz2 |
Major refactoring to follow the Logbook model
Diffstat (limited to 'src/Monolog/Writer/WriterInterface.php')
-rw-r--r-- | src/Monolog/Writer/WriterInterface.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Monolog/Writer/WriterInterface.php b/src/Monolog/Writer/WriterInterface.php deleted file mode 100644 index f8dffb3..0000000 --- a/src/Monolog/Writer/WriterInterface.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -/* - * This file is part of the Monolog package. - * - * (c) Jordi Boggiano <j.boggiano@seld.be> - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Writer; - -use Monolog\Formatter\FormatterInterface; - -interface WriterInterface -{ - function setFormatter(FormatterInterface $formatter); - function write($log, $message); - function close(); -} |