summaryrefslogtreecommitdiffstats
path: root/lib/Service/Service.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/Service.php')
-rw-r--r--lib/Service/Service.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Service/Service.php b/lib/Service/Service.php
index 970613830..597a99647 100644
--- a/lib/Service/Service.php
+++ b/lib/Service/Service.php
@@ -40,8 +40,8 @@ abstract class Service
/**
* Service constructor.
*
- * @param NewsMapperV2 $mapper
- * @param LoggerInterface $logger
+ * @param NewsMapperV2 $mapper
+ * @param LoggerInterface $logger
*/
public function __construct($mapper, LoggerInterface $logger)
{
@@ -97,7 +97,7 @@ abstract class Service
public function find(string $userId, int $id): Entity
{
try {
- return $this->mapper->find($userId, $id);
+ return $this->mapper->findFromUser($userId, $id);
} catch (DoesNotExistException $ex) {
throw new ServiceNotFoundException($ex->getMessage());
} catch (MultipleObjectsReturnedException $ex) {