summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-09 10:04:30 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-09 10:04:30 +0100
commit6ba22f0243b8d0f33a4c2b7e56bae5b971614d02 (patch)
tree0bcee63554e9675a9c850632f77fc69942e02b3f
parentdda9525c4be9f04fd2869b78ff0612c2f57f4e56 (diff)
parent7c45eaa70bf8113b56bdc01abe89735fe8107856 (diff)
downloadnextcloud-server-6ba22f0243b8d0f33a4c2b7e56bae5b971614d02.tar.gz
nextcloud-server-6ba22f0243b8d0f33a4c2b7e56bae5b971614d02.zip
Merge pull request #21043 from owncloud/add-php-doc
Add type description
-rw-r--r--lib/private/appframework/app.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/appframework/app.php b/lib/private/appframework/app.php
index 0188d221be1..5cad32bbd09 100644
--- a/lib/private/appframework/app.php
+++ b/lib/private/appframework/app.php
@@ -26,6 +26,7 @@
namespace OC\AppFramework;
+use OC\AppFramework\Http\Dispatcher;
use OC_App;
use OC\AppFramework\DependencyInjection\DIContainer;
use OCP\AppFramework\QueryException;
@@ -97,6 +98,7 @@ class App {
}
// initialize the dispatcher and run all the middleware before the controller
+ /** @var Dispatcher $dispatcher */
$dispatcher = $container['Dispatcher'];
list(