1 | <?php |
||
22 | class DomainEvent extends BaseDomainEvent implements DomainEventInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var DomainEventId |
||
26 | */ |
||
27 | protected $eventId; |
||
28 | |||
29 | /** |
||
30 | * EntityDomainEvent constructor. |
||
31 | * |
||
32 | * @param IdInterface $aggregateId |
||
33 | */ |
||
34 | public function __construct(IdInterface $aggregateId) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function eventId() |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function aggregateId() |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function version() |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function setVersion($version) |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public static function fromArray(array $data) |
||
86 | |||
87 | /** |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | public function toArray() |
||
96 | } |
||
97 |
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.