Fix some phpdoc and remove useless code

This commit is contained in:
Frederic Guillot
2015-09-20 18:44:51 -04:00
parent e6f547abcf
commit f579663adc
9 changed files with 75 additions and 91 deletions

View File

@@ -103,11 +103,11 @@ class ClassProvider implements ServiceProviderInterface
return new OAuth2($c);
});
$container['htmlConverter'] = function($c) {
$container['htmlConverter'] = function() {
return new HtmlConverter(array('strip_tags' => true));
};
$container['objectStorage'] = function($c) {
$container['objectStorage'] = function() {
return new FileStorage(FILES_DIR);
};
}