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