Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class DeleteBuilder extends QueryPartBuilder |
||
6 | { |
||
7 | 1 | protected function getInitialParts(): array |
|
8 | { |
||
9 | 1 | return ['DELETE']; |
|
10 | } |
||
11 | |||
12 | 1 | protected function getPartBuilders(): array |
|
16 | 1 | ]; |
|
17 | } |
||
18 | |||
19 | 1 | protected function buildFrom($part) |
|
22 | } |
||
23 | |||
24 | 1 | protected function getRequiredParts(): array |
|
27 | } |
||
28 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.