Conditions | 4 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
47 | public function hydrate($value) |
||
48 | { |
||
49 | if ($this->is32BitSystem && $value > (float)PHP_INT_MAX) { |
||
50 | throw new UnsupportedException("Value unsupported: Operating system does not support 64 bit integers"); |
||
51 | } |
||
52 | |||
53 | return $value === null |
||
54 | ? $this->schema->getDefault() |
||
55 | : (int)$value; |
||
56 | } |
||
57 | } |
||
58 |