Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
29 | class LanguageVietnamese extends AbstractModule implements ModuleLanguageInterface |
||
30 | { |
||
31 | use ModuleLanguageTrait; |
||
|
|||
32 | |||
33 | /** |
||
34 | * @param string $column |
||
35 | * @param string $letter |
||
36 | * @param Builder $query |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | public function initialLetterSQL(string $column, string $letter, Builder $query): void |
||
41 | { |
||
42 | $query->where($column . ' /*! COLLATE utf8_vietnamese_ci */', 'LIKE', '\\' . $letter . '%'); |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @return LocaleInterface |
||
47 | */ |
||
48 | public function locale(): LocaleInterface |
||
51 | } |
||
52 | } |
||
53 |
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