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