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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 12:48:10 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 12:48:10 +0300
commit41b5e5923a44965e435d35d01b5009abb2dd5c97 (patch)
tree1d832f87ecbaa33c5ad6e09792e5ae5a0f760fe6 /tests/lib/BackgroundJob
parent813bdc1ce8a45039fa17aac12bd078466a0034d0 (diff)
Use exactly one empty line after the namespace declaration
For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/BackgroundJob')
-rw-r--r--tests/lib/BackgroundJob/DummyJobList.php1
-rw-r--r--tests/lib/BackgroundJob/TestJob.php1
2 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/BackgroundJob/DummyJobList.php b/tests/lib/BackgroundJob/DummyJobList.php
index 4b8de82b368..529e93e960f 100644
--- a/tests/lib/BackgroundJob/DummyJobList.php
+++ b/tests/lib/BackgroundJob/DummyJobList.php
@@ -7,6 +7,7 @@
*/
namespace Test\BackgroundJob;
+
use OCP\BackgroundJob\IJob;
/**
diff --git a/tests/lib/BackgroundJob/TestJob.php b/tests/lib/BackgroundJob/TestJob.php
index a5ab4454550..e15c7e86c99 100644
--- a/tests/lib/BackgroundJob/TestJob.php
+++ b/tests/lib/BackgroundJob/TestJob.php
@@ -8,7 +8,6 @@
namespace Test\BackgroundJob;
-
class TestJob extends \OC\BackgroundJob\Job {
private $testCase;