Total Complexity | 10 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 88.24% |
Changes | 0 |
1 | <?php |
||
14 | final class CommandPDO extends AbstractCommandPDO |
||
15 | { |
||
16 | public function queryBuilder(): QueryBuilderInterface |
||
17 | { |
||
18 | return $this->db->getQueryBuilder(); |
||
19 | 1 | } |
|
20 | |||
21 | 1 | /** |
|
22 | 1 | * @psalm-suppress UnusedClosureParam |
|
23 | 1 | * |
|
24 | * @throws Throwable |
||
25 | 1 | */ |
|
26 | protected function internalExecute(string|null $rawSql): void |
||
51 | } |
||
52 | } |
||
56 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.