Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.2109 |
Changes | 0 |
1 | <?php |
||
25 | 54 | public function add($name, $path, $fallback = false) |
|
26 | { |
||
27 | 54 | if ($this->exists($name)) { |
|
28 | 4 | throw new LogicException('The template folder "' . $name . '" is already being used.'); |
|
29 | } |
||
30 | |||
31 | 54 | $this->folders[$name] = new Folder($name, $path, $fallback); |
|
32 | |||
33 | 50 | return $this; |
|
34 | } |
||
35 | |||
76 |