| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 2 | public function compile(Template $template) |
|
| 34 | { |
||
| 35 | 2 | $method = 'compile'.ucfirst($template->getName()); |
|
| 36 | 2 | if (!method_exists($this, $method)) { |
|
| 37 | 1 | throw new RuntimeException('No compile method for "'.$template->getName().'".'); |
|
| 38 | } |
||
| 39 | |||
| 40 | 1 | return $this->$method($template); |
|
| 41 | } |
||
| 42 | } |
||
| 43 |