| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class SmallintGuesser extends IntGuesser implements GuesserInterface |
||
| 6 | { |
||
| 7 | public function supports(array $mapping) |
||
| 8 | { |
||
| 9 | $mapping = array_merge([ 'type' => null ], $mapping); |
||
| 10 | |||
| 11 | return $mapping['type'] === 'smallint'; |
||
| 12 | } |
||
| 13 | |||
| 14 | public function fake(array $mapping) |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getName() |
||
| 22 | } |
||
| 23 | } |
||
| 24 |