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

github.com/nextcloud/files_automatedtagging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2022-09-09 13:08:31 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-09-09 13:08:31 +0300
commitce34de48a6753d19ed7ed2eb3782efa25117cc77 (patch)
treef25421f609f037f0dc82bc1da7bb7099ccc0095d
parent5f4a0106746d1d5c9385f7bb4f0ed060ae90c1d2 (diff)
fix code style
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--lib/Listener/RegisterFlowOperationsListener.php1
-rw-r--r--lib/Operation.php1
-rw-r--r--lib/Settings/Admin.php1
-rw-r--r--tests/OperationTest.php1
4 files changed, 0 insertions, 4 deletions
diff --git a/lib/Listener/RegisterFlowOperationsListener.php b/lib/Listener/RegisterFlowOperationsListener.php
index c5a7ff0..089b9b9 100644
--- a/lib/Listener/RegisterFlowOperationsListener.php
+++ b/lib/Listener/RegisterFlowOperationsListener.php
@@ -34,7 +34,6 @@ use OCP\WorkflowEngine\Events\RegisterOperationsEvent;
use Psr\Container\ContainerInterface;
class RegisterFlowOperationsListener implements IEventListener {
-
private ContainerInterface $container;
public function __construct(ContainerInterface $container) {
diff --git a/lib/Operation.php b/lib/Operation.php
index f1c03cb..3a35969 100644
--- a/lib/Operation.php
+++ b/lib/Operation.php
@@ -43,7 +43,6 @@ use RuntimeException;
use UnexpectedValueException;
class Operation implements ISpecificOperation, IComplexOperation {
-
protected ISystemTagObjectMapper $objectMapper;
protected ISystemTagManager $tagManager;
protected IManager $checkManager;
diff --git a/lib/Settings/Admin.php b/lib/Settings/Admin.php
index 2871455..a3634c0 100644
--- a/lib/Settings/Admin.php
+++ b/lib/Settings/Admin.php
@@ -29,7 +29,6 @@ use OCP\Settings\ISettings;
use OCP\Util;
class Admin implements ISettings {
-
private IL10N $l10n;
private string $appName;
diff --git a/tests/OperationTest.php b/tests/OperationTest.php
index 657c6da..6b2c223 100644
--- a/tests/OperationTest.php
+++ b/tests/OperationTest.php
@@ -39,7 +39,6 @@ use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;
class OperationTest extends TestCase {
-
/** @var ISystemTagObjectMapper|MockObject */
protected $objectMapper;
/** @var ISystemTagManager|MockObject */