diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-22 12:40:14 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-24 13:42:58 +0200 |
commit | d1993c32e5ef84af2ac30b7b89a5b491e113f455 (patch) | |
tree | fdfb1c217ad468edb5a41ce0bc2ea8b18c0b9dfa /apps/testing | |
parent | 5eee110b15169240134fc54672fe38da63bc7fb1 (diff) | |
download | nextcloud-server-d1993c32e5ef84af2ac30b7b89a5b491e113f455.tar.gz nextcloud-server-d1993c32e5ef84af2ac30b7b89a5b491e113f455.zip |
Move Application to AppInfo
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/testing')
-rw-r--r-- | apps/testing/appinfo/app.php | 2 | ||||
-rw-r--r-- | apps/testing/lib/AppInfo/Application.php (renamed from apps/testing/lib/Application.php) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/testing/appinfo/app.php b/apps/testing/appinfo/app.php index 402889f2674..5dce74bf786 100644 --- a/apps/testing/appinfo/app.php +++ b/apps/testing/appinfo/app.php @@ -19,5 +19,5 @@ * */ -$app = new \OCA\Testing\Application(); +$app = new \OCA\Testing\AppInfo\Application(); diff --git a/apps/testing/lib/Application.php b/apps/testing/lib/AppInfo/Application.php index 8f42d0442dd..9d2b100e8b0 100644 --- a/apps/testing/lib/Application.php +++ b/apps/testing/lib/AppInfo/Application.php @@ -19,7 +19,7 @@ * */ -namespace OCA\Testing; +namespace OCA\Testing\AppInfo; use OCP\AppFramework\App; use OCA\Testing\AlternativeHomeUserBackend; |