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