| 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 | public function queryBuilder(): QueryBuilderInterface |
||
| 20 | { |
||
| 21 | return $this->db->getQueryBuilder(); |
||
| 22 | 6 | } |
|
| 23 | |||
| 24 | 6 | /** |
|
| 25 | * @psalm-suppress UnusedClosureParam |
||
| 26 | 6 | * |
|
| 27 | * @throws Exception |
||
| 28 | 6 | * @throws Throwable |
|
| 29 | 6 | */ |
|
| 30 | protected function internalExecute(string|null $rawSql): void |
||
| 55 | 257 | } |
|
| 56 | 257 | } |
|
| 60 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.