Issues (12)

Handler/HandlerConfigurationInterface.php (1 issue)

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
The doc comment class-string<HandlerInterface> at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string<HandlerInterface>.
Loading history...
22
     */
23
    public function getHandlerClassName(): string;
24
}
25