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