Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 761 | public function __construct(Pattern ...$patterns) |
|
20 | { |
||
21 | 761 | $this->patterns = $patterns; |
|
22 | |||
23 | $patterns = array_map(function (Pattern $pattern) : string { |
||
24 | 761 | return $pattern->getPattern(); |
|
25 | 761 | }, $this->patterns); |
|
26 | |||
27 | 761 | $this->regex = '/^(?:' . implode('|', $patterns) . ')$/i'; |
|
28 | 761 | } |
|
35 |