| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function replaceAll($text, AfterScenarioTested $event) |
||
| 29 | { |
||
| 30 | foreach ($this->placeholders as $placeholder) { |
||
| 31 | if (strpos($text, $placeholder->getKey()) !== false) { |
||
| 32 | $text = str_replace($placeholder->getKey(), $placeholder->getValue($event), $text); |
||
| 33 | } |
||
| 34 | } |
||
| 35 | |||
| 36 | return $text; |
||
| 37 | } |
||
| 38 | } |
||
| 39 |