| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 8 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | View Code Duplication | public function getStrategy($name) |
|
| 47 | { |
||
| 48 | if (array_key_exists($name, $this->stopStrategies)) { |
||
| 49 | return $this->stopStrategies[$name]; |
||
| 50 | } else { |
||
| 51 | throw new \RuntimeException("Strategy ('" . $name . "') not found. Available strategies are " . implode(', ', array_keys($this->stopStrategies))); |
||
| 52 | } |
||
| 53 | } |
||
| 54 | } |
||
| 55 |