| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 4 | public function __construct(Filesystem $filesystem) |
|
| 23 | { |
||
| 24 | 4 | parent::__construct($filesystem); |
|
| 25 | 4 | if ($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 |