| 1 | <?php  | 
            ||
| 7 | class CompositePsr7RequestAuthorizer implements Psr7RequestAuthorizerInterface  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 | * @var Psr7RequestAuthorizerInterface[]  | 
            ||
| 11 | */  | 
            ||
| 12 | private $psr7RequestAuthorizers;  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | * @param Psr7RequestAuthorizerInterface[] $psr7RequestAuthorizers  | 
            ||
| 16 | */  | 
            ||
| 17 | public function __construct(Psr7RequestAuthorizerInterface... $psr7RequestAuthorizers)  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * @inheritdoc  | 
            ||
| 24 | */  | 
            ||
| 25 | public function authorize(RequestInterface $request)  | 
            ||
| 33 | }  | 
            ||
| 34 | 
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..