diff --git a/src/Service/EntityManager/EntityManager.php b/src/Service/EntityManager/EntityManager.php index ac0b956..31984ef 100644 --- a/src/Service/EntityManager/EntityManager.php +++ b/src/Service/EntityManager/EntityManager.php @@ -41,8 +41,10 @@ public function __construct(RestEntityManager $baseEntityManager, ?string $clien } /** - * @throws ReflectionException * @throws EntityManagerException + * @throws ReflectionException + * + * @return object */ public function get($entity, array $uriParams = [], array $queryParams = [], array $headers = []) { @@ -57,6 +59,8 @@ public function get($entity, array $uriParams = [], array $queryParams = [], arr /** * @throws ReflectionException * @throws EntityManagerException + * + * @return object */ public function create(Entity $entity, array $uriParams = [], array $queryParams = [], array $headers = []) { @@ -71,6 +75,8 @@ public function create(Entity $entity, array $uriParams = [], array $queryParams /** * @throws ReflectionException * @throws EntityManagerException + * + * @return object */ public function update(Entity $entity, $uriParams = [], $queryParams = [], array $headers = []) { @@ -85,6 +91,8 @@ public function update(Entity $entity, $uriParams = [], $queryParams = [], array /** * @throws ReflectionException * @throws EntityManagerException + * + * @return object */ public function delete(Entity $entity, $uriParams = [], $queryParams = [], array $headers = []) {