Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
25 | 1 | public function __construct(array $root_paths, $namespace = null) |
|
26 | { |
||
27 | 1 | $this->namespace = $namespace; |
|
28 | |||
29 | 1 | $this->finders = new MultiViewFinder(); |
|
30 | |||
31 | 1 | foreach ($root_paths as $root_path) { |
|
32 | 1 | $this->finders->addViewFinder(new SimpleViewFinder($root_path, $namespace)); |
|
33 | } |
||
34 | 1 | } |
|
35 | |||
52 |