Skip to content

Commit 684bb2f

Browse files
authored
TASK: Cosmetic changes to satisfy linter (#3613)
* TASK: Cosmetic changes to satisfy linter * more tweaks
1 parent 375b20a commit 684bb2f

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

Classes/ContentRepository/Service/WorkspaceService.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
*/
3333
class WorkspaceService
3434
{
35-
3635
/**
3736
* @Flow\Inject
3837
* @var UserService

Classes/Domain/Model/ReferencingChangeInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
use Neos\ContentRepository\Core\Projection\ContentGraph\Node;
1515

16-
1716
/**
1817
* A change that needs to reference another node
1918
*/

Classes/Domain/Service/NodePropertyConverterService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public function getProperty(Node $node, $propertyName)
144144
);
145145

146146
return $this->toNodeIdentifierStrings($references);
147-
// Here, the normal property access logic starts.
147+
// Here, the normal property access logic starts.
148148
} elseif ($propertyName[0] === '_' && $propertyName !== '_hiddenInIndex') {
149149
$propertyValue = ObjectAccess::getProperty($node, ltrim($propertyName, '_'));
150150
} else {

Classes/Fusion/Helper/NodeInfoHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ protected function renderChildrenInformation(Node $node, string $nodeTypeFilterS
281281
// child nodes for content tree, must not include those nodes filtered out by `baseNodeType`
282282
$contentChildNodes = $subgraph->findChildNodes(
283283
$node->nodeAggregateId,
284-
FindChildNodesFilter::create(nodeTypeConstraints:
285-
$this->buildContentChildNodeFilterString()
284+
FindChildNodesFilter::create(
285+
nodeTypeConstraints: $this->buildContentChildNodeFilterString()
286286
)
287287
);
288288
$childNodes = $documentChildNodes->merge($contentChildNodes);

0 commit comments

Comments
 (0)