1 | <?php |
||
2 | |||
3 | /* |
||
4 | * This file is part of the Micro framework package. |
||
5 | * |
||
6 | * (c) Stanislau Komar <[email protected]> |
||
7 | * |
||
8 | * For the full copyright and license information, please view the LICENSE |
||
9 | * file that was distributed with this source code. |
||
10 | */ |
||
11 | |||
12 | namespace Micro\Plugin\Logger\Monolog\Configuration\Handler; |
||
13 | |||
14 | use Micro\Plugin\Logger\Monolog\Business\Handler\HandlerInterface; |
||
15 | |||
16 | interface HandlerConfigurationInterface |
||
17 | { |
||
18 | public static function type(): string; |
||
19 | |||
20 | /** |
||
21 | * @return class-string<HandlerInterface> |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
22 | */ |
||
23 | public function getHandlerClassName(): string; |
||
24 | } |
||
25 |