| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class IntegerTypeMock extends TypeMock |
||
| 19 | { |
||
| 20 | const /** @noinspection PhpConstantNamingConventionInspection */ |
||
| 21 | ZERO = 'zero, false, not positive'; |
||
| 22 | const MINUS_ONE = 'false, negative'; |
||
| 23 | const /** @noinspection PhpConstantNamingConventionInspection */ |
||
| 24 | ONE = 'true, positive'; |
||
| 25 | const /** @noinspection PhpConstantNamingConventionInspection */ |
||
| 26 | MAX = 'max'; |
||
| 27 | const /** @noinspection PhpConstantNamingConventionInspection */ |
||
| 28 | MIN = 'min'; |
||
| 29 | const USUAL = 'usual'; |
||
| 30 | |||
| 31 | protected static $recommendCount = 6; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return \Generator |
||
| 35 | */ |
||
| 36 | public static function getSample() |
||
| 54 | } |