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>2019-11-22 22:52:10 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-22 22:52:10 +0300
commit68748d4f85dd23238aaafb787b1c341f0f2f0419 (patch)
tree7aab3a925dda8dcd6ef4e8c6fe04063abbadd6af /tests/lib/Calendar
parent21119633041d5ccae19975a58b0ae50ef5a8e33a (diff)
Some php-cs fixes
* Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/Calendar')
-rw-r--r--tests/lib/Calendar/ManagerTest.php4
-rw-r--r--tests/lib/Calendar/Resource/ManagerTest.php6
-rw-r--r--tests/lib/Calendar/Room/ManagerTest.php6
3 files changed, 8 insertions, 8 deletions
diff --git a/tests/lib/Calendar/ManagerTest.php b/tests/lib/Calendar/ManagerTest.php
index 657a50a3d88..dca9368558f 100644
--- a/tests/lib/Calendar/ManagerTest.php
+++ b/tests/lib/Calendar/ManagerTest.php
@@ -23,9 +23,9 @@
namespace Test\Calendar;
-use \OC\Calendar\Manager;
+use OC\Calendar\Manager;
use OCP\Calendar\ICalendar;
-use \Test\TestCase;
+use Test\TestCase;
class ManagerTest extends TestCase {
diff --git a/tests/lib/Calendar/Resource/ManagerTest.php b/tests/lib/Calendar/Resource/ManagerTest.php
index 1d9229856db..3e065c69908 100644
--- a/tests/lib/Calendar/Resource/ManagerTest.php
+++ b/tests/lib/Calendar/Resource/ManagerTest.php
@@ -23,10 +23,10 @@
namespace Test\Calendar\Resource;
-use \OC\Calendar\Resource\Manager;
-use \OCP\Calendar\Resource\IBackend;
+use OC\Calendar\Resource\Manager;
+use OCP\Calendar\Resource\IBackend;
use OCP\IServerContainer;
-use \Test\TestCase;
+use Test\TestCase;
class ManagerTest extends TestCase {
diff --git a/tests/lib/Calendar/Room/ManagerTest.php b/tests/lib/Calendar/Room/ManagerTest.php
index 52347f439fa..9a85132aa3a 100644
--- a/tests/lib/Calendar/Room/ManagerTest.php
+++ b/tests/lib/Calendar/Room/ManagerTest.php
@@ -23,10 +23,10 @@
namespace Test\Calendar\Room;
-use \OC\Calendar\Room\Manager;
-use \OCP\Calendar\Room\IBackend;
+use OC\Calendar\Room\Manager;
+use OCP\Calendar\Room\IBackend;
use OCP\IServerContainer;
-use \Test\TestCase;
+use Test\TestCase;
class ManagerTest extends TestCase {