1 | <?php |
||
14 | abstract class AbstractPageTest extends TestCase |
||
15 | { |
||
16 | protected static $parameters; |
||
17 | |||
18 | /** |
||
19 | * @var EventPageParser |
||
20 | */ |
||
21 | protected static $parser; |
||
22 | |||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected static $parametersParsed; |
||
27 | |||
28 | public static function setUpBeforeClass() |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | abstract protected static function getSerializedFile(); |
||
55 | |||
56 | /** |
||
57 | * @return string |
||
58 | */ |
||
59 | abstract protected static function getHtmlFile(); |
||
60 | |||
61 | /** |
||
62 | * @return AbstractScraper |
||
63 | */ |
||
64 | abstract protected static function getNewScraper(); |
||
65 | |||
66 | /** |
||
67 | * @return AbstractScraper |
||
68 | */ |
||
69 | abstract protected static function getNewParser(); |
||
70 | } |
||
71 |
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..