Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | final class DDLQueryBuilder extends AbstractDDLQueryBuilder |
||
11 | { |
||
12 | public function __construct(private QueryBuilderInterface $queryBuilder) |
||
13 | { |
||
14 | parent::__construct($queryBuilder); |
||
15 | } |
||
16 | |||
17 | public function dropCommentFromColumn(string $table, string $column): string |
||
18 | { |
||
19 | return 'COMMENT ON COLUMN ' |
||
20 | . $this->queryBuilder->quoter()->quoteTableName($table) |
||
21 | . '.' |
||
22 | . $this->queryBuilder->quoter()->quoteColumnName($column) |
||
23 | . " IS ''"; |
||
24 | } |
||
25 | |||
26 | public function dropCommentFromTable(string $table): string |
||
29 | } |
||
30 | } |
||
31 |
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