Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class SmallInt extends AbstractMySqlIntegerCase |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritdoc} |
||
13 | */ |
||
14 | 15 | protected function minSignedValue() |
|
15 | { |
||
16 | 15 | return -32768; |
|
17 | } |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 12 | protected function maxSignedValue() |
|
23 | { |
||
24 | 12 | return 32767; |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | 9 | protected function maxUnsignedValue() |
|
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 12 | protected function minUnSignedValue() |
|
41 | } |
||
42 | } |
||
43 |