Remove duplicated definition of APIController

This commit is contained in:
Joas Schilling 2015-01-26 10:20:01 +01:00
parent 810d5a6a67
commit d6939d67da
1 changed files with 0 additions and 12 deletions

View File

@ -19,7 +19,6 @@ class Application extends App {
parent::__construct('files', $urlParams);
$container = $this->getContainer();
/**
* Controllers
*/
@ -52,16 +51,5 @@ class Application extends App {
$homeFolder
);
});
/**
* Controllers
*/
$container->registerService('APIController', function (IContainer $c) {
return new ApiController(
$c->query('AppName'),
$c->query('Request'),
$c->query('TagService')
);
});
}
}