From 4900ad911923f829dd89dd5db6162a061cea6c9c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Tue, 25 Mar 2014 22:59:42 +0100
Subject: [PATCH] update type hint in PHPDoc

---
 core/routes.php     | 3 ++-
 settings/routes.php | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/core/routes.php b/core/routes.php
index 76cf03c367..74be880612 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -7,7 +7,8 @@
  */
 
 // Post installation check
-/** @var $this OC_Router */
+
+/** @var $this OCP\Route\IRouter */
 $this->create('post_setup_check', '/post-setup-check')
 	->action('OC_Setup', 'postSetupCheck');
 
diff --git a/settings/routes.php b/settings/routes.php
index 6954bd3823..a8bb0d981e 100644
--- a/settings/routes.php
+++ b/settings/routes.php
@@ -6,7 +6,7 @@
  * See the COPYING-README file.
  */
 
-/** @var $this OC_Router */
+/** @var $this OCP\Route\IRouter */
 
 // Settings pages
 $this->create('settings_help', '/settings/help')
-- 
GitLab