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