Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function __construct(array $configuration = ['el' => '#app'], string $varName = "app", bool $useVuetify = false) { |
||
22 | parent::__construct(); |
||
23 | $this->varName = $varName; |
||
24 | $configuration['el'] = "'" . $configuration['el'] . "'"; |
||
25 | $this->configuration = $configuration; |
||
26 | if ($useVuetify) { |
||
27 | $this->configuration['vuetify'] = "new Vuetify()"; |
||
28 | } |
||
41 | } |