| 1 | <?php |
||
| 5 | class RateTimeInTransitResponse |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | public $PickupDate; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | public $DocumentsOnlyIndicator; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | public $PackageBillType; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var ServiceSummary |
||
| 24 | */ |
||
| 25 | public $ServiceSummary; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | public $AutoDutyCode; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | public $Disclaimer; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param \stdClass|null $response |
||
| 39 | */ |
||
| 40 | public function __construct(\stdClass $response = null) |
||
| 62 | } |
||
| 63 |
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..