| Total Complexity | 3 |
| Total Lines | 107 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class UserRoles extends AbstractModel |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * |
||
| 13 | * @var integer |
||
| 14 | */ |
||
| 15 | public $users_id; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * |
||
| 19 | * @var integer |
||
| 20 | */ |
||
| 21 | public $apps_id; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * |
||
| 25 | * @var integer |
||
| 26 | */ |
||
| 27 | public $roles_id; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * |
||
| 31 | * @var integer |
||
| 32 | */ |
||
| 33 | public $companies_id; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | public $created_at; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * |
||
| 43 | * @var string |
||
| 44 | */ |
||
| 45 | public $updated_at; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * |
||
| 49 | * @var integer |
||
| 50 | */ |
||
| 51 | public $is_deleted; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Initialize method for model. |
||
| 55 | */ |
||
| 56 | public function initialize() |
||
| 86 | ); |
||
| 87 | } |
||
| 88 | |||
| 89 | /** |
||
| 90 | * Returns table name mapped in the model. |
||
| 91 | * |
||
| 92 | * @return string |
||
| 93 | */ |
||
| 94 | public function getSource(): string |
||
| 95 | { |
||
| 96 | return 'user_roles'; |
||
| 97 | } |
||
| 98 | |||
| 99 | /** |
||
| 100 | * Validations and business logic. |
||
| 101 | */ |
||
| 102 | public function validation() |
||
| 116 | } |
||
| 117 | } |
||
| 118 |
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