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