diff options
Diffstat (limited to 'src/Monolog/Handler/HandlerInterface.php')
-rw-r--r-- | src/Monolog/Handler/HandlerInterface.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Monolog/Handler/HandlerInterface.php b/src/Monolog/Handler/HandlerInterface.php new file mode 100644 index 0000000..81cff1f --- /dev/null +++ b/src/Monolog/Handler/HandlerInterface.php @@ -0,0 +1,29 @@ +<?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\Handler; + +interface HandlerInterface +{ + public function handle($message); + + public function setLevel($level); + + public function getLevel(); + + public function setBubble($bubble); + + public function getBubble(); + + public function getParent(); + + public function setParent(HandlerInterface $parent); +} |