| Total Complexity | 1 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class Table extends \Bluz\Db\Table |
||
|
|
|||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Pending phone verification |
||
| 21 | */ |
||
| 22 | public const STATUS_PENDING = 'pending'; |
||
| 23 | /** |
||
| 24 | * Active phone number |
||
| 25 | */ |
||
| 26 | public const STATUS_ACTIVE = 'active'; |
||
| 27 | /** |
||
| 28 | * Disabled by administrator or by user |
||
| 29 | */ |
||
| 30 | public const STATUS_DISABLED = 'disabled'; |
||
| 31 | /** |
||
| 32 | * Removed by user |
||
| 33 | */ |
||
| 34 | public const STATUS_DELETED = 'deleted'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | protected $name = 'users_phones'; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var string |
||
| 43 | */ |
||
| 44 | protected $rowClass = Row::class; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Primary key(s) |
||
| 48 | * @var array |
||
| 49 | */ |
||
| 50 | protected $primary = ['id']; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Init table relations |
||
| 54 | * |
||
| 55 | * @return void |
||
| 56 | */ |
||
| 57 | public function init(): void |
||
| 62 |
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