| Total Complexity | 5 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class BigIntColumn extends Column |
||
| 16 | { |
||
| 17 | public function __construct( |
||
| 18 | string|null $type = SchemaInterface::TYPE_BIGINT, |
||
| 19 | string|null $phpType = SchemaInterface::PHP_TYPE_INTEGER, |
||
| 20 | ) { |
||
| 21 | parent::__construct($type, $phpType); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function dbTypecast(mixed $value): int|string|ExpressionInterface|null |
||
| 32 | }; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function phpTypecast(mixed $value): int|string|null |
||
| 44 |