summaryrefslogtreecommitdiffstats
path: root/src/Monolog/Writer/WriterInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Monolog/Writer/WriterInterface.php')
-rw-r--r--src/Monolog/Writer/WriterInterface.php21
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();
-}