Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.2109 |
Changes | 0 |
1 | <?php |
||
20 | 82 | public static function create($name = Templates::BASE) |
|
21 | { |
||
22 | 82 | $class = __NAMESPACE__ . '\\Templates\\' . ucwords($name) . 'Template'; |
|
23 | |||
24 | 82 | if (class_exists($class)) { |
|
25 | 80 | return new $class(); |
|
26 | } |
||
27 | |||
28 | 2 | throw new FlashTemplateNotFoundException("Template \"{$name}\" not found!"); |
|
29 | } |
||
30 | } |
||
31 |