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