Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-07-22 13:40:14 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-07-24 14:42:58 +0300
commitd1993c32e5ef84af2ac30b7b89a5b491e113f455 (patch)
treefdfb1c217ad468edb5a41ce0bc2ea8b18c0b9dfa /apps/testing
parent5eee110b15169240134fc54672fe38da63bc7fb1 (diff)
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.php2
-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;