Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 92.31% |
Changes | 8 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class VueJS extends AbstractVueJS { |
||
16 | |||
17 | protected array $configuration; |
||
18 | protected string $varName; |
||
19 | |||
20 | 1 | public function __construct(array $configuration = ['el' => '#app'], string $varName = "app", bool $useVuetify = false) { |
|
26 | } |
||
27 | 1 | } |
|
28 | |||
29 | 1 | protected function generateVueObject(string $object): string { |
|
30 | 1 | return "new Vue(" . $object . ")"; |
|
31 | } |
||
32 | |||
33 | 1 | public function __toString(): string { |
|
37 | } |
||
38 | } |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.