1 | <?php |
||
13 | class ServiceProvider implements ServiceProviderContract { |
||
14 | /** |
||
15 | * Container to register with. |
||
16 | * |
||
17 | * @var Container |
||
18 | */ |
||
19 | protected $container; |
||
20 | |||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | * |
||
24 | * @param Container $container |
||
25 | */ |
||
26 | 3 | public function register( Container $container ) { |
|
36 | |||
37 | /** |
||
38 | * Registers the assets on the generated Register. |
||
39 | * |
||
40 | * This is a no-op by default by can be overwritten by the implementing developer |
||
41 | * to provide a single, clean location to register their assets. |
||
42 | * |
||
43 | * @param Register $register |
||
44 | * |
||
45 | * @codeCoverageIgnore |
||
46 | */ |
||
47 | protected function add_assets( Register $register ) { |
||
50 | } |
||
51 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.