Total Complexity | 12 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Coverage | 86.36% |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class CommandPDOPgsql extends CommandPDO |
||
12 | { |
||
13 | /** |
||
14 | * @inheritDoc |
||
15 | */ |
||
16 | 1 | public function insertEx(string $table, array $columns): bool|array |
|
17 | { |
||
18 | 1 | $params = []; |
|
19 | 1 | $sql = $this->queryBuilder()->insertEx($table, $columns, $params); |
|
20 | |||
21 | 1 | $this->setSql($sql)->bindValues($params); |
|
22 | 1 | $this->prepare(false); |
|
23 | |||
24 | /** @var mixed */ |
||
25 | 1 | $queryOne = $this->queryOne(); |
|
26 | |||
27 | 1 | return is_array($queryOne) ? $queryOne : false; |
|
28 | } |
||
29 | |||
30 | 196 | public function queryBuilder(): QueryBuilderInterface |
|
33 | } |
||
34 | |||
35 | 176 | protected function internalExecute(?string $rawSql): void |
|
65 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths