Skip to content

Commit f57984e

Browse files
author
Christoph Lehmann
committed
Task: Apply StyleCi changes
1 parent c3f68a9 commit f57984e

17 files changed

Lines changed: 16 additions & 24 deletions

Classes/Domain/Model/CheckResult.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,4 @@ public function setMissingProviderData(bool $missingProviderData)
8282
{
8383
$this->missingProviderData = $missingProviderData;
8484
}
85-
86-
87-
}
85+
}

Classes/Domain/Model/Dto/ResolverData.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,4 @@ public function setRule(Rule $rule)
102102
{
103103
$this->rule = $rule;
104104
}
105-
106-
}
105+
}

Classes/Domain/Model/Rule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ public function setMessageCategory(string $messageCategory)
109109
{
110110
$this->messageCategory = $messageCategory;
111111
}
112-
}
112+
}

Classes/Domain/Repository/CheckResultRepository.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?php
22
namespace T3Monitor\T3monitoring\Domain\Repository;
33

4-
use TYPO3\CMS\Extbase\Utility\DebuggerUtility;
5-
64
class CheckResultRepository extends BaseRepository
75
{
86
public function findAllWithFailCount()

Classes/Domain/Repository/ClientRepository.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ protected function getFilterDemand()
195195
return GeneralUtility::makeInstance(ClientFilterDemand::class);
196196
}
197197

198-
199198
/**
200199
* @param int $ruleId
201200
* @return array

Classes/Resolver/BackendUserResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ protected function addRuleData($backendUsers)
4040
$backendUsers);
4141
$this->resolverData->setResponse($update);
4242
}
43-
}
43+
}

Classes/Resolver/BaseResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ public function execute()
6565
public function getProviderArguments()
6666
{
6767
}
68-
}
68+
}

Classes/Resolver/ComposerVersionResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public function matchesNotVersionOperator()
1414
{
1515
return !Semver::satisfies($this->valueForComparison, $this->value);
1616
}
17-
}
17+
}

Classes/Resolver/ConfigurationResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ public function isNotOperator(): bool
4444
{
4545
return $this->valueForComparison !== $this->value;
4646
}
47-
}
47+
}

Classes/Resolver/CoreVersionResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public function setValueForComparison()
99
{
1010
$this->valueForComparison = $this->resolverData->getResponse()['core']['typo3Version'];
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)