| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public function __construct( |
||
| 53 | string $seed, |
||
| 54 | int $cycles, |
||
| 55 | int $tokenLength, |
||
| 56 | int $startTime, |
||
| 57 | int $time, |
||
| 58 | int $previousTime = null |
||
| 59 | ) { |
||
| 60 | $this->seed = $seed; |
||
| 61 | $this->cycles = $cycles; |
||
| 62 | $this->tokenLength = $tokenLength; |
||
| 63 | $this->startTime = $startTime; |
||
| 64 | $this->time = $time; |
||
| 65 | $this->previousTime = $previousTime; |
||
| 66 | } |
||
| 67 | |||
| 90 |