| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class Table extends \Bluz\Db\Table |
||
|
|
|||
| 25 | { |
||
| 26 | public const PROVIDER_LIQPAY = 'liqpay'; |
||
| 27 | public const PROVIDER_PAYPAL = 'paypal'; |
||
| 28 | public const PROVIDER_STRIPE = 'stripe'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | protected $name = 'payments'; |
||
| 34 | |||
| 35 | protected $rowClass = Row::class; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Primary key(s) |
||
| 39 | * @var array |
||
| 40 | */ |
||
| 41 | protected $primary = ['id']; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * init |
||
| 45 | * |
||
| 46 | * @return void |
||
| 47 | */ |
||
| 48 | public function init(): void |
||
| 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