| 1 | <?php |
||
| 26 | abstract class AbstractCommandTestCase extends AbstractTestCase { |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Input. |
||
| 30 | * |
||
| 31 | * @var InputInterface |
||
| 32 | */ |
||
| 33 | protected $input; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Output. |
||
| 37 | * |
||
| 38 | * @var OutputInterface |
||
| 39 | */ |
||
| 40 | protected $output; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Style. |
||
| 44 | * |
||
| 45 | * @var StyleInterface |
||
| 46 | */ |
||
| 47 | protected $style; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | protected function setUp(): void { |
||
| 68 | } |
||
| 69 |
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..