Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
32 | 2 | public function create(): ?Renderer |
|
33 | { |
||
34 | 2 | foreach ($this->getRules() as $rule) { |
|
35 | 2 | $templateRenderer = $rule($this->rendererConfiguration); |
|
36 | |||
37 | 2 | if ($templateRenderer) { |
|
38 | 2 | $this->loadExtensions($templateRenderer); |
|
39 | |||
40 | 2 | return $templateRenderer; |
|
41 | } |
||
42 | } |
||
43 | |||
44 | return null; |
||
45 | } |
||
46 | |||
65 |