1 | <?php |
||
22 | class DomainEvent extends BaseDomainEvent implements DomainEventInterface |
||
23 | { |
||
24 | /** |
||
25 | * EntityDomainEvent constructor. |
||
26 | * |
||
27 | * @param IdInterface $aggregateId |
||
28 | */ |
||
29 | public function __construct(IdInterface $aggregateId) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function eventId() |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function aggregateId() |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function version() |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function setVersion($version) |
||
69 | } |
||
70 |
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.