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