Total Complexity | 1 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
22 | class Table extends \Bluz\Db\Table |
||
|
|||
23 | { |
||
24 | /** |
||
25 | * Pending email verification |
||
26 | */ |
||
27 | public const STATUS_PENDING = 'pending'; |
||
28 | /** |
||
29 | * Active user |
||
30 | */ |
||
31 | public const STATUS_ACTIVE = 'active'; |
||
32 | /** |
||
33 | * Disabled by administrator |
||
34 | */ |
||
35 | public const STATUS_DISABLED = 'disabled'; |
||
36 | /** |
||
37 | * Removed account |
||
38 | */ |
||
39 | public const STATUS_DELETED = 'deleted'; |
||
40 | /** |
||
41 | * system user with ID=1 |
||
42 | */ |
||
43 | public const SYSTEM_USER = 1; |
||
44 | |||
45 | /** |
||
46 | * Table |
||
47 | * |
||
48 | * @var string |
||
49 | */ |
||
50 | protected $name = 'users'; |
||
51 | |||
52 | /** |
||
53 | * Primary key(s) |
||
54 | * |
||
55 | * @var array |
||
56 | */ |
||
57 | protected $primary = ['id']; |
||
58 | |||
59 | /** |
||
60 | * Init table relations |
||
61 | * |
||
62 | * @return void |
||
63 | 1 | */ |
|
64 | public function init(): void |
||
70 |
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