1 | <?php |
||
24 | class InstitutionAuthorizationContext implements InstitutionAuthorizationContextInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var Institution |
||
28 | */ |
||
29 | private $actorInstitution; |
||
30 | |||
31 | /** |
||
32 | * @var InstitutionRoleSet |
||
33 | */ |
||
34 | private $roleRequirements; |
||
35 | |||
36 | /** |
||
37 | * @var IdentityId|null |
||
38 | */ |
||
39 | private $identityId; |
||
40 | |||
41 | /** |
||
42 | * @var bool |
||
43 | */ |
||
44 | private $isSraa; |
||
45 | |||
46 | /** |
||
47 | * AuthorizationContext constructor. |
||
48 | * @param Institution $actorInstitution |
||
49 | * @param InstitutionRoleSetInterface $roleRequirements |
||
50 | * @param IdentityId|null $identityId |
||
51 | * @param bool $isSraa describes if the actor is SRAA or not. Default: false |
||
52 | */ |
||
53 | public function __construct( |
||
64 | |||
65 | /** |
||
66 | * @return Institution |
||
67 | */ |
||
68 | public function getActorInstitution() |
||
72 | |||
73 | /** |
||
74 | * @return InstitutionRoleSet |
||
75 | */ |
||
76 | public function getRoleRequirements() |
||
80 | |||
81 | /** |
||
82 | * @return IdentityId |
||
83 | */ |
||
84 | public function getIdentityId() |
||
88 | |||
89 | /** |
||
90 | * @return bool |
||
91 | */ |
||
92 | public function isActorSraa() |
||
96 | } |
||
97 |
Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a given class or a super-class is assigned to a property that is type hinted more strictly.
Either this assignment is in error or an instanceof check should be added for that assignment.