diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-11-02 11:54:11 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-11-02 19:20:37 +0100 |
commit | 2452a3ec732263a598c225bbb0991f24c3cbbcec (patch) | |
tree | 2b14b2d395581ab90b4167c3c222413ad031ac21 /lib/private/AppFramework | |
parent | 0e5147f0013b3ef19736e0ccc4a23e46defbe14c (diff) | |
download | nextcloud-server-2452a3ec732263a598c225bbb0991f24c3cbbcec.tar.gz nextcloud-server-2452a3ec732263a598c225bbb0991f24c3cbbcec.zip |
Properly query the methodreflector
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/AppFramework')
-rw-r--r-- | lib/private/AppFramework/DependencyInjection/DIContainer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/DependencyInjection/DIContainer.php b/lib/private/AppFramework/DependencyInjection/DIContainer.php index 6991d12da7c..3708d967c9d 100644 --- a/lib/private/AppFramework/DependencyInjection/DIContainer.php +++ b/lib/private/AppFramework/DependencyInjection/DIContainer.php @@ -164,7 +164,7 @@ class DIContainer extends SimpleContainer implements IAppContainer { return new Dispatcher( $c['Protocol'], $c['MiddlewareDispatcher'], - $c['ControllerMethodReflector'], + $c->query(IControllerMethodReflector::class), $c['Request'] ); }); |