| 1 | <?php |
||
| 10 | final class FakeNumberGenerator implements NumberGeneratorInterface |
||
| 11 | { |
||
| 12 | /** @var int */ |
||
| 13 | protected $number; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param int $number |
||
| 17 | */ |
||
| 18 | public function __construct($number) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritDoc} |
||
| 25 | */ |
||
| 26 | public function generate($min = null, $max = null) |
||
| 30 | } |
||
| 31 |