Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | 5 | public function getToken(): string |
|
19 | 5 | { |
|
20 | $environmentToken = $this->getDefaultEnvironmentToken(); |
||
21 | 2 | if (!empty($environmentToken)) { |
|
22 | return $environmentToken; |
||
23 | 2 | } |
|
24 | 2 | ||
25 | 1 | $numbers = range(0, 9); |
|
26 | |||
27 | return implode('', array_map(function () use (&$numbers) { |
||
28 | 2 | return array_rand($numbers); |
|
29 | }, range(1, $this->length))); |
||
30 | 2 | } |
|
43 |