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