aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV/BirthdayService.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-20 01:15:24 +0200
committerJoas Schilling <coding@schilljs.com>2016-09-20 01:15:24 +0200
commit1944d9b3abb5f3f20fa5e2ba2004dbd7994bb13f (patch)
tree51684f9a9b3a34deaebaec0fe00eede1c8c833b3 /apps/dav/lib/CalDAV/BirthdayService.php
parentf4a4578f0de9cd0e41786b1af20ca642af390101 (diff)
downloadnextcloud-server-1944d9b3abb5f3f20fa5e2ba2004dbd7994bb13f.tar.gz
nextcloud-server-1944d9b3abb5f3f20fa5e2ba2004dbd7994bb13f.zip
Use magic DI
Diffstat (limited to 'apps/dav/lib/CalDAV/BirthdayService.php')
-rw-r--r--apps/dav/lib/CalDAV/BirthdayService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/BirthdayService.php b/apps/dav/lib/CalDAV/BirthdayService.php
index 31a6c73f484..ab2794e67db 100644
--- a/apps/dav/lib/CalDAV/BirthdayService.php
+++ b/apps/dav/lib/CalDAV/BirthdayService.php
@@ -50,7 +50,7 @@ class BirthdayService {
* @param CardDavBackend $cardDavBackEnd
* @param GroupPrincipalBackend $principalBackend
*/
- public function __construct($calDavBackEnd, $cardDavBackEnd, $principalBackend) {
+ public function __construct(CalDavBackend $calDavBackEnd, CardDavBackend $cardDavBackEnd, GroupPrincipalBackend $principalBackend) {
$this->calDavBackEnd = $calDavBackEnd;
$this->cardDavBackEnd = $cardDavBackEnd;
$this->principalBackend = $principalBackend;