1 | <?php declare(strict_types = 1); |
||
11 | class ZendSessionProcessor implements SessionProcessorInterface |
||
12 | { |
||
13 | /** @var int */ |
||
14 | private $zendSessionConfig; |
||
15 | |||
16 | 3 | public function __construct(ConfigInterface $zendSessionConfig) |
|
20 | |||
21 | 1 | public function processRequest(ServerRequestInterface $request): ServerRequestInterface |
|
29 | |||
30 | 1 | public function processResponse(ServerRequestInterface $request, ResponseInterface $response): ResponseInterface |
|
34 | } |
||
35 |
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..