diff options
Diffstat (limited to 'apps/updatenotification/lib/updatechecker.php')
-rw-r--r-- | apps/updatenotification/lib/updatechecker.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/updatenotification/lib/updatechecker.php b/apps/updatenotification/lib/updatechecker.php index 965e21617e7..bf653c23b8f 100644 --- a/apps/updatenotification/lib/updatechecker.php +++ b/apps/updatenotification/lib/updatechecker.php @@ -21,16 +21,16 @@ namespace OCA\UpdateNotification; -use OC\Updater; +use OC\Updater\VersionCheck; class UpdateChecker { - /** @var Updater */ + /** @var VersionCheck */ private $updater; /** - * @param Updater $updater + * @param VersionCheck $updater */ - public function __construct(Updater $updater) { + public function __construct(VersionCheck $updater) { $this->updater = $updater; } |