Total Complexity | 4 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class CustomerAdvancedStreetAddress |
||
18 | { |
||
19 | /** |
||
20 | * @var Config |
||
21 | */ |
||
22 | private $config; |
||
23 | |||
24 | /** |
||
25 | * @param Config $config |
||
26 | */ |
||
27 | public function __construct( |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Change Template. |
||
35 | * |
||
36 | * @param Edit $subject |
||
37 | * @param string $result |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | public function afterGetTemplate(Edit $subject, string $result): string |
||
52 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.