Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
36 | 2 | public function findAllTemplates() |
|
37 | { |
||
38 | 2 | if (null !== $this->templates) { |
|
39 | 1 | return $this->templates; |
|
40 | } |
||
41 | |||
42 | 2 | $templates = array(); |
|
43 | |||
44 | 2 | foreach ($this->paths as $dir) { |
|
45 | 2 | $templates = array_merge($templates, $this->findTemplatesInFolder($dir)); |
|
46 | } |
||
47 | |||
48 | 2 | return $this->templates = $templates; |
|
49 | } |
||
50 | |||
75 |