Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | 13 | public function generate(array $criteriaBuilderList) |
|
16 | { |
||
17 | 13 | $concretPassword = []; |
|
18 | |||
19 | 13 | foreach ($criteriaBuilderList as $criteriaBuilder) { |
|
20 | 12 | $concretPassword = array_merge($concretPassword, $criteriaBuilder->build()); |
|
21 | 13 | } |
|
22 | |||
23 | 13 | shuffle($concretPassword); |
|
24 | |||
25 | 13 | return implode($concretPassword); |
|
26 | } |
||
27 | |||
58 |