Total Complexity | 6 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class BigIntColumn extends Column |
||
14 | { |
||
15 | public function __construct( |
||
16 | string|null $type = SchemaInterface::TYPE_BIGINT, |
||
17 | string|null $phpType = SchemaInterface::PHP_TYPE_INTEGER, |
||
18 | ) { |
||
19 | parent::__construct($type, $phpType); |
||
20 | } |
||
21 | |||
22 | public function dbTypecast(mixed $value): int|string|ExpressionInterface|null |
||
35 | }, |
||
36 | }; |
||
37 | } |
||
38 | |||
39 | public function phpTypecast(mixed $value): int|string|null |
||
48 |