diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-07-07 12:14:45 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-07-07 12:14:45 +0200 |
commit | 2791b8f00dec7136280e53175285de04f6c8f092 (patch) | |
tree | 9856834214b634a1177ded5b94f46d5a65d1e85d /core/Application.php | |
parent | e3b509220b5e90646b54490fa081fa53880089e5 (diff) | |
download | nextcloud-server-2791b8f00dec7136280e53175285de04f6c8f092.tar.gz nextcloud-server-2791b8f00dec7136280e53175285de04f6c8f092.zip |
Revert "occ web executor (#24957)"
This reverts commit 854352d9a064a1e469ede207493bce44fd41d96c.
Diffstat (limited to 'core/Application.php')
-rw-r--r-- | core/Application.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/core/Application.php b/core/Application.php index 8ea2672e54e..a87917b626a 100644 --- a/core/Application.php +++ b/core/Application.php @@ -32,7 +32,6 @@ use OC\AppFramework\Utility\TimeFactory; use OC\Core\Controller\AvatarController; use OC\Core\Controller\LoginController; use OC\Core\Controller\LostController; -use OC\Core\Controller\OccController; use OC\Core\Controller\TokenController; use OC\Core\Controller\TwoFactorChallengeController; use OC\Core\Controller\UserController; @@ -126,18 +125,6 @@ class Application extends App { $c->query('SecureRandom') ); }); - $container->registerService('OccController', function(SimpleContainer $c) { - return new OccController( - $c->query('AppName'), - $c->query('Request'), - $c->query('Config'), - new \OC\Console\Application( - $c->query('Config'), - $c->query('ServerContainer')->getEventDispatcher(), - $c->query('Request') - ) - ); - }); /** * Core class wrappers |