| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 524 | public function __construct(Substitution ...$substitutions) |
|
| 23 | { |
||
| 24 | 524 | foreach ($substitutions as $substitution) { |
|
| 25 | 524 | $this->substitutions[$substitution->getFrom()->getWord()] = $substitution; |
|
| 26 | } |
||
| 27 | |||
| 28 | 524 | $this->regex = '(?:' . implode('|', array_keys($this->substitutions)) . ')'; |
|
| 29 | 524 | } |
|
| 55 |