1 | <?php |
||
9 | class EventSerializer |
||
10 | { |
||
11 | /** @var \Symfony\Component\Serializer\Serializer */ |
||
12 | protected $serializer; |
||
13 | |||
14 | public function __construct() |
||
21 | |||
22 | public function serialize(ShouldBeStored $event): string |
||
30 | |||
31 | public function deserialize(string $eventClass, string $json): ShouldBeStored |
||
37 | } |
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.