1 | <?php |
||
9 | trait InteractsWithConfig |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @param $name |
||
14 | * @param null $default |
||
15 | * @return array|null |
||
16 | */ |
||
17 | 2 | protected function getConfigStore($name, $default = null) |
|
21 | |||
22 | /** |
||
23 | * Get the filesystem connection configuration. |
||
24 | * |
||
25 | * @param string $name |
||
26 | * @param null $default |
||
27 | * @return array |
||
28 | */ |
||
29 | 1 | protected function getConfig($name, $default = null) |
|
46 | } |
||
47 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.