diff options
Diffstat (limited to 'apps/dav/lib/CardDAV/PhotoCache.php')
-rw-r--r-- | apps/dav/lib/CardDAV/PhotoCache.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/dav/lib/CardDAV/PhotoCache.php b/apps/dav/lib/CardDAV/PhotoCache.php index 0fb5592142e..7f9579a377f 100644 --- a/apps/dav/lib/CardDAV/PhotoCache.php +++ b/apps/dav/lib/CardDAV/PhotoCache.php @@ -28,15 +28,13 @@ class PhotoCache { 'image/vnd.microsoft.icon' => 'ico', ]; - protected IAppData $appData; - protected LoggerInterface $logger; - /** * PhotoCache constructor. */ - public function __construct(IAppData $appData, LoggerInterface $logger) { - $this->appData = $appData; - $this->logger = $logger; + public function __construct( + protected IAppData $appData, + protected LoggerInterface $logger, + ) { } /** |