1 | <?php |
||
12 | trait Mixin |
||
13 | { |
||
14 | use VOArrayMixin; |
||
15 | |||
16 | /** |
||
17 | * @param Yaml $yaml |
||
18 | * @return static |
||
19 | */ |
||
20 | public static function fromVOYaml(Yaml $yaml) |
||
24 | |||
25 | /** |
||
26 | * @param $yaml |
||
27 | * @return static |
||
28 | */ |
||
29 | public static function fromYaml($yaml) |
||
33 | |||
34 | /** |
||
35 | * @return Yaml |
||
36 | */ |
||
37 | public function toVOYaml() |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function toYaml() |
||
49 | |||
50 | /** |
||
51 | * @param Xml $xml |
||
52 | * @return static |
||
53 | */ |
||
54 | public function fromVOXml(Xml $xml) |
||
58 | |||
59 | /** |
||
60 | * @param $xml |
||
61 | * @return static |
||
62 | */ |
||
63 | public function fromXml($xml) |
||
67 | |||
68 | /** |
||
69 | * @return Xml |
||
70 | */ |
||
71 | public function toVOXml() |
||
75 | |||
76 | /** |
||
77 | * @return string |
||
78 | */ |
||
79 | public function toXml() |
||
83 | |||
84 | /** |
||
85 | * @param Json $json |
||
86 | * @return static |
||
87 | */ |
||
88 | public static function fromVOJson(Json $json) |
||
92 | |||
93 | /** |
||
94 | * @param string $json |
||
95 | * @return static |
||
96 | */ |
||
97 | public static function fromJson($json) |
||
101 | |||
102 | /** |
||
103 | * @return static |
||
104 | */ |
||
105 | public function toVOJson() |
||
109 | |||
110 | /** |
||
111 | * @return string |
||
112 | */ |
||
113 | public function toJson() |
||
117 | } |
||
118 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.