]> source.dussan.org Git - nextcloud-server.git/commitdiff
update type hint in PHPDoc
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 25 Mar 2014 21:59:42 +0000 (22:59 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 25 Mar 2014 21:59:42 +0000 (22:59 +0100)
core/routes.php
settings/routes.php

index 76cf03c36733404d6b2d32c7a4c0db559ad0047b..74be88061200befdd596a7d71e2ad1ae201197c1 100644 (file)
@@ -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');
 
index 6954bd3823d68573c8249a3b096ea110c8301dad..a8bb0d981e8a0ede6c5ff61ce331265d5ea8799e 100644 (file)
@@ -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')