Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
22 | 4 | public function __construct(Filesystem $filesystem = null) |
|
23 | { |
||
24 | 4 | parent::__construct($filesystem); |
|
25 | 4 | if (!is_null($filesystem) && $filesystem->getAdapter() instanceof Local) { |
|
26 | $path = $filesystem->getAdapter()->getPathPrefix(); |
||
27 | } else { |
||
28 | 4 | $path = null; |
|
29 | } |
||
30 | 4 | $this->liquid = new LiquidTemplate($path); |
|
31 | 4 | } |
|
32 | |||
53 |