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