Total Complexity | 10 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | final class CommandPDO extends AbstractCommandPDO |
||
15 | { |
||
16 | 227 | public function queryBuilder(): QueryBuilderInterface |
|
17 | { |
||
18 | 227 | return $this->db->getQueryBuilder(); |
|
19 | } |
||
20 | |||
21 | /** |
||
22 | * @psalm-suppress UnusedClosureParam |
||
23 | * |
||
24 | * @throws Throwable |
||
25 | */ |
||
26 | 215 | 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.