| 1 | <?php |
||
| 20 | class GetSegmentsResponse extends Response |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var int The result of the function |
||
| 24 | */ |
||
| 25 | protected $GetSegmentsResult; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var ArrayOfSegmentsInfo List of found segments |
||
| 29 | */ |
||
| 30 | protected $segments; |
||
| 31 | |||
| 32 | 1 | public function __construct() |
|
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | */ |
||
| 41 | 1 | public function getCode() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return ArrayOfSegmentsInfo List of found segments |
||
| 48 | */ |
||
| 49 | 1 | public function getSegments() |
|
| 53 | } |
||
| 54 |
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..