Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function testProcess() |
||
28 | { |
||
29 | $container = new Container([self::class => $this]); |
||
30 | |||
31 | $caller = new ActionCaller(self::class, 'process', $container); |
||
32 | |||
33 | $response = $caller->process($this->request, $this->handler); |
||
34 | self::assertEquals(204, $response->getStatusCode()); |
||
35 | } |
||
45 |
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..