| 1 | <?php | ||
| 12 | trait StringMixin | ||
| 13 | { | ||
| 14 | use Mixin; | ||
| 15 | |||
| 16 | /** | ||
| 17 | * @param Yaml $yaml | ||
| 18 | * @return Json | ||
| 19 | */ | ||
| 20 | public static function fromYaml(Yaml $yaml) | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @return Yaml | ||
| 27 | */ | ||
| 28 | public function toYaml() | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @param Xml $xml | ||
| 35 | * @return Json | ||
| 36 | */ | ||
| 37 | public function fromXml(Xml $xml) | ||
| 41 | |||
| 42 | /** | ||
| 43 | * @return string | ||
| 44 | */ | ||
| 45 | public function toXml() | ||
| 49 | } | ||
| 50 | 
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.