1 | <?php |
||
13 | class AbstractRequestTest extends Base |
||
14 | { |
||
15 | /** |
||
16 | * @var AbstractRequest |
||
17 | */ |
||
18 | private $request; |
||
19 | private $config = ['username' => 'username']; |
||
20 | |||
21 | public function setUp() |
||
26 | |||
27 | /** |
||
28 | * @expectedException \RuntimeException |
||
29 | */ |
||
30 | public function testGetResponseBeforeSend() |
||
34 | |||
35 | public function testGetParameters() |
||
39 | } |
||
40 |
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..