[Pkg-owncloud-commits] [owncloud] 437/457: Correc type annotation
David Prévot
taffit at moszumanska.debian.org
Sun Jun 28 20:07:03 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 123807bff7248cdfe39df5c022d35df13b8fa067
Author: Lukas Reschke <lukas at owncloud.com>
Date: Wed Jun 17 11:55:15 2015 +0200
Correc type annotation
---
core/avatar/avatarcontroller.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/avatar/avatarcontroller.php b/core/avatar/avatarcontroller.php
index 5ddd80c..19ea1f7 100644
--- a/core/avatar/avatarcontroller.php
+++ b/core/avatar/avatarcontroller.php
@@ -43,7 +43,7 @@ class AvatarController extends Controller {
/** @var IAvatarManager */
protected $avatarManager;
- /** @var ICache */
+ /** @var \OC\Cache\File */
protected $cache;
/** @var IL10N */
@@ -59,7 +59,7 @@ class AvatarController extends Controller {
* @param string $appName
* @param IRequest $request
* @param IAvatarManager $avatarManager
- * @param ICache $cache
+ * @param \OC\Cache\File $cache
* @param IL10N $l10n
* @param IUserManager $userManager
* @param IUserSession $userSession
@@ -67,7 +67,7 @@ class AvatarController extends Controller {
public function __construct($appName,
IRequest $request,
IAvatarManager $avatarManager,
- ICache $cache,
+ \OC\Cache\File $cache,
IL10N $l10n,
IUserManager $userManager,
IUserSession $userSession) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list