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