Skip to content

Commit

Permalink
Update return type to ApiEntityInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
crakter authored Mar 1, 2022
1 parent 7ae4fe5 commit 7ced237
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Entity/Booking/ProductEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @method string getId()
* @method ApiEntityInterface setCustomerNumber(string $string)
* @method string getCustomerNumber()
* @method ApiEntityInterface setServices(array $array)
* @method ApiEntityInterface setServices(ApiEntityInterface $array)
* @method array getServices()
* @method ApiEntityInterface setCustomsDeclaration(array $array)
* @method array getCustomsDeclaration()
Expand Down Expand Up @@ -59,5 +59,7 @@ public function setServices(ApiEntityInterface $services): ApiEntityInterface
AllowedServices::hasAppliesTo($key, $this->getId());
}
$this->services = $services;

return $this;
}
}

0 comments on commit 7ced237

Please sign in to comment.