1 | <?php |
||
11 | class ClimateLoggerServiceProvider implements ServiceProviderInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var int |
||
16 | */ |
||
17 | public $loglevel = MonologLogger::DEBUG; |
||
18 | |||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | public $loglevel_name; |
||
24 | |||
25 | |||
26 | /** |
||
27 | * @param int Monolog Loglevel constant |
||
28 | */ |
||
29 | 8 | public function __construct(int $loglevel) |
|
36 | |||
37 | |||
38 | /** |
||
39 | * @param Container $dic [description] |
||
40 | * @return void |
||
41 | */ |
||
42 | 6 | public function register(Container $dic) |
|
74 | } |
||
75 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.