diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-09 10:04:30 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-09 10:04:30 +0100 |
commit | 6ba22f0243b8d0f33a4c2b7e56bae5b971614d02 (patch) | |
tree | 0bcee63554e9675a9c850632f77fc69942e02b3f | |
parent | dda9525c4be9f04fd2869b78ff0612c2f57f4e56 (diff) | |
parent | 7c45eaa70bf8113b56bdc01abe89735fe8107856 (diff) | |
download | nextcloud-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.php | 2 |
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( |