| 1 | <?php |
||
| 10 | final class JsonEventSerializer implements EventSerializer |
||
| 11 | { |
||
| 12 | /** @var \Symfony\Component\Serializer\Serializer */ |
||
| 13 | private $serializer; |
||
| 14 | |||
| 15 | public function __construct() |
||
| 22 | |||
| 23 | public function serialize(ShouldBeStored $event): string |
||
| 37 | |||
| 38 | public function deserialize(string $eventClass, string $json): ShouldBeStored |
||
| 48 | } |
||
| 49 |
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.