| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 6 | public function __construct($bytes = PHP_INT_SIZE, $forceStrong = true) |
|
| 37 | { |
||
| 38 | 6 | if((int)$bytes < 1) { |
|
| 39 | 3 | throw new \OutOfRangeException('The length of the desired string of bytes. Must be a positive integer.'); |
|
| 40 | } |
||
| 41 | |||
| 42 | 3 | $this->bytes = (int)$bytes; |
|
| 43 | 3 | $this->forceStrong = (bool)$forceStrong; |
|
| 44 | 3 | } |
|
| 45 | |||
| 71 |