1 | <?php |
||
9 | class MonologFactory |
||
10 | { |
||
11 | protected static $channelChanger; |
||
12 | |||
13 | protected static $channelName = 'default'; |
||
14 | |||
15 | public function __invoke(ContainerInterface $container) |
||
21 | |||
22 | public static function __callStatic($name, $arguments) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public static function getChannelName(): string |
||
44 | |||
45 | /** |
||
46 | * @param string $channelName |
||
47 | */ |
||
48 | public static function setChannelName(string $channelName) |
||
52 | |||
53 | /** |
||
54 | * @param ContainerInterface $container |
||
55 | * |
||
56 | * @return mixed |
||
57 | */ |
||
58 | public static function getChannelChanger(ContainerInterface $container) : ChannelChanger |
||
69 | |||
70 | /** |
||
71 | * @param ChannelChanger $channelChanger |
||
72 | */ |
||
73 | public static function setChannelChanger(ChannelChanger $channelChanger) |
||
77 | } |