1 | <?php |
||
9 | class CacheServiceProvider implements ServiceProviderInterface |
||
10 | { |
||
11 | public $cache_lifetime; |
||
12 | public $cache_dir; |
||
13 | |||
14 | 10 | public function __construct($cache_dir = null, $cache_lifetime = 3600) |
|
19 | |||
20 | /** |
||
21 | * @implements ServiceProviderInterface |
||
22 | */ |
||
23 | 8 | public function register(Container $dic) |
|
52 | } |
||
53 | |||
54 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.