Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | final class LikeConditionBuilder extends AbstractLikeConditionBuilder |
||
11 | { |
||
12 | /** |
||
13 | * @var array map of chars to their replacements in LIKE conditions. |
||
14 | * By default it's configured to escape `%`, `_`, `[` with `]`, `\\`. |
||
15 | */ |
||
16 | protected array $escapingReplacements = [ |
||
17 | '%' => '[%]', |
||
18 | '_' => '[_]', |
||
19 | '[' => '[[]', |
||
20 | ']' => '[]]', |
||
21 | '\\' => '[\\]', |
||
22 | ]; |
||
23 | |||
24 | 31 | public function __construct(QueryBuilderInterface $queryBuilder) |
|
29 |
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