| 1 | <?php |
||
| 21 | trait DataMappingTrait |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Callback to return tag details for JS library tokenfield. |
||
| 25 | * |
||
| 26 | * @param Tag $tag |
||
| 27 | * |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | public function tokenFieldCallback(Tag $tag) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Callback to return tag details as array. |
||
| 41 | * |
||
| 42 | * @param Tag $tag |
||
| 43 | * |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | public function toArrayCallback(Tag $tag) |
||
| 54 | } |
||
| 55 |
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.