Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 8 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class VueJS extends AbstractVueJS { |
||
16 | |||
17 | protected string $varName; |
||
18 | |||
19 | 1 | public function __construct(array $configuration = ['el' => '#app'], string $varName = 'app', bool $useVuetify = false) { |
|
24 | } |
||
25 | 1 | } |
|
26 | |||
27 | 1 | protected function generateVueObject(string $object): string { |
|
28 | 1 | return "new Vue($object)"; |
|
29 | } |
||
30 | |||
31 | 1 | public function __toString(): string { |
|
35 | } |
||
36 | } |