summaryrefslogtreecommitdiffstats
path: root/hooks
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 03:41:49 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 03:41:49 +0200
commit407fbebc2da14520942e0a6a9220a5a3cfc4a7ad (patch)
treee313ddad41398382f82cd27b40f46e0b7394c393 /hooks
parent7d33bab5abd81871e4efcf995f8a715d45b9d590 (diff)
rename businesslayer to service
Diffstat (limited to 'hooks')
-rw-r--r--hooks/user.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/hooks/user.php b/hooks/user.php
index 9191b5fa9..0502960ec 100644
--- a/hooks/user.php
+++ b/hooks/user.php
@@ -26,9 +26,9 @@ class User {
$container = $app->getContainer();
// order is important!
- $container->query('ItemBusinessLayer')->deleteUser($userId);
- $container->query('FeedBusinessLayer')->deleteUser($userId);
- $container->query('FolderBusinessLayer')->deleteUser($userId);
+ $container->query('ItemService')->deleteUser($userId);
+ $container->query('FeedService')->deleteUser($userId);
+ $container->query('FolderService')->deleteUser($userId);
}