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