| 1 | <?php |
||
| 5 | class WSCRS_GetAvailability |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var \DateTime $StartDate |
||
| 10 | */ |
||
| 11 | protected $StartDate = null; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param \DateTime $StartDate |
||
| 15 | */ |
||
| 16 | public function __construct(\DateTime $StartDate) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return \DateTime |
||
| 23 | */ |
||
| 24 | public function getStartDate() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param \DateTime $StartDate |
||
| 39 | * @return \Gueststream\PMS\IQWare\API\WSCRS_GetAvailability |
||
| 40 | */ |
||
| 41 | public function setStartDate(\DateTime $StartDate) |
||
| 46 | } |
||
| 47 |
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..