1 | <?php |
||
24 | class ResendInvitationUserService implements ApplicationService |
||
25 | { |
||
26 | /** |
||
27 | * The command handler. |
||
28 | * |
||
29 | * @var InviteUserHandler |
||
30 | */ |
||
31 | private $handler; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | * |
||
36 | * @param ResendInvitationUserHandler $aHandler The command handler |
||
37 | */ |
||
38 | public function __construct(ResendInvitationUserHandler $aHandler) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function execute($request = null) |
||
50 | } |
||
51 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..