Total Complexity | 2 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | class Table extends \Bluz\Db\Table |
||
30 | { |
||
31 | public const TYPE_DEBIT = 'debit'; |
||
32 | public const TYPE_CREDIT = 'credit'; |
||
33 | public const TYPE_BLOCK = 'block'; |
||
34 | public const TYPE_UNBLOCK = 'unblock'; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $name = 'transactions'; |
||
40 | |||
41 | protected $rowClass = Row::class; |
||
42 | |||
43 | /** |
||
44 | * Primary key(s) |
||
45 | * @var array |
||
46 | */ |
||
47 | protected $primary = ['id']; |
||
48 | |||
49 | /** |
||
50 | * init |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | public function init(): void |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * getInfo |
||
61 | * |
||
62 | * @param integer $id |
||
63 | * |
||
64 | * @return Row |
||
65 | */ |
||
66 | public static function getInfo($id): ?Row |
||
74 |
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