diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-10-23 05:57:34 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-10-23 05:57:34 +0200 |
commit | ad017285e15b077bf0ca3457f05a7b082abea6b0 (patch) | |
tree | 56445784a888c80d163b190c0a1c73a6382971f9 /lib/private/appframework/dependencyinjection | |
parent | 064fd5ae53b4f3384d040ddf2dcb648cc3c7445f (diff) | |
download | nextcloud-server-ad017285e15b077bf0ca3457f05a7b082abea6b0.tar.gz nextcloud-server-ad017285e15b077bf0ca3457f05a7b082abea6b0.zip |
Fix namespace for OCP\Appframework\Http
To avoid having to use OCP\Appframework\Http\Http in the public - and stable
- API OCP\Appframework\Http is now both a class and a namespace.
Diffstat (limited to 'lib/private/appframework/dependencyinjection')
-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 81910df6990..ae2c5e8546b 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -24,7 +24,7 @@ namespace OC\AppFramework\DependencyInjection; -use OC\AppFramework\Http\Http; +use OC\AppFramework\Http; use OC\AppFramework\Http\Request; use OC\AppFramework\Http\Dispatcher; use OC\AppFramework\Core\API; |