| 1 | <?php |
||
| 12 | trait Mixin |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public abstract function toString(); |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return VOString |
||
| 21 | */ |
||
| 22 | 3 | public function toVOString() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param VOString $voString |
||
| 29 | * @return static |
||
| 30 | */ |
||
| 31 | 1 | public static function fromVOString(VOString $voString) |
|
| 35 | } |
||
| 36 |
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.