| 1 | <?php |
||
| 12 | class Request extends AbstractRequest |
||
| 13 | { |
||
| 14 | use GetRequestTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The request body. |
||
| 18 | * |
||
| 19 | * @var array |
||
| 20 | * |
||
| 21 | * @JMS\Type("Speicher210\Monsum\Api\Service\Subscription\GetUsageData\RequestData") |
||
| 22 | * @JMS\SerializedName("FILTER") |
||
| 23 | */ |
||
| 24 | protected $filter; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Constructor. |
||
| 28 | * |
||
| 29 | * @param RequestData $requestData The data for the request. |
||
| 30 | */ |
||
| 31 | 3 | public function __construct(RequestData $requestData = null) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | 3 | public function getService() |
|
| 44 | } |
||
| 45 |
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..