summaryrefslogtreecommitdiffstats
path: root/service
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-16 13:27:06 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-16 13:27:06 +0200
commit92ea15247e59aebb74c7a020e47defcb47ae5df3 (patch)
treed2066ed8fa2359ff83881c5ac75f5821a2dc2c32 /service
parentb65f71b6d191d8af8b97dd72405fbd3576299806 (diff)
add delete method for imapper since service depends on it
Diffstat (limited to 'service')
-rw-r--r--service/service.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/service/service.php b/service/service.php
index 9609dd61e..cecd33687 100644
--- a/service/service.php
+++ b/service/service.php
@@ -32,8 +32,8 @@ abstract class Service {
* Delete an entity
* @param int $id the id of the entity
* @param string $userId the name of the user for security reasons
- * @throws DoesNotExistException if the entity does not exist
- * @throws MultipleObjectsReturnedException if more than one entity exists
+ * @throws ServiceNotFoundException if the entity does not exist, or there
+ * are more than one of it
*/
public function delete($id, $userId){
$entity = $this->find($id, $userId);
@@ -45,8 +45,8 @@ abstract class Service {
* Finds an entity by id
* @param int $id the id of the entity
* @param string $userId the name of the user for security reasons
- * @throws DoesNotExistException if the entity does not exist
- * @throws MultipleObjectsReturnedException if more than one entity exists
+ * @throws ServiceNotFoundException if the entity does not exist, or there
+ * are more than one of it
* @return Entity the entity
*/
public function find($id, $userId){