Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class DatabaseTypeEngine extends Entity |
||
22 | { |
||
23 | // Available fields. |
||
24 | public const FIELD_QUANTITY = 'quantity'; |
||
25 | public const FIELD_PRICE = 'price'; |
||
26 | |||
27 | // `FIELD_QUANTITY` values. |
||
28 | public const QUANTITY_1 = 1; |
||
29 | public const QUANTITY_2 = 2; |
||
30 | public const QUANTITY_3 = 3; |
||
31 | |||
32 | /** |
||
33 | * @codeCoverageIgnore This method was autogenerated. |
||
34 | */ |
||
35 | public function __get(string $name): mixed |
||
43 |