Skip to content

Commit

Permalink
TASK: Cosmetic changes to satisfy linter (#3613)
Browse files Browse the repository at this point in the history
* TASK: Cosmetic changes to satisfy linter

* more tweaks
  • Loading branch information
bwaidelich authored Sep 8, 2023
1 parent 375b20a commit 684bb2f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion Classes/ContentRepository/Service/WorkspaceService.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
*/
class WorkspaceService
{

/**
* @Flow\Inject
* @var UserService
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/ReferencingChangeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

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


/**
* A change that needs to reference another node
*/
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Service/NodePropertyConverterService.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function getProperty(Node $node, $propertyName)
);

return $this->toNodeIdentifierStrings($references);
// Here, the normal property access logic starts.
// Here, the normal property access logic starts.
} elseif ($propertyName[0] === '_' && $propertyName !== '_hiddenInIndex') {
$propertyValue = ObjectAccess::getProperty($node, ltrim($propertyName, '_'));
} else {
Expand Down
4 changes: 2 additions & 2 deletions Classes/Fusion/Helper/NodeInfoHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ protected function renderChildrenInformation(Node $node, string $nodeTypeFilterS
// child nodes for content tree, must not include those nodes filtered out by `baseNodeType`
$contentChildNodes = $subgraph->findChildNodes(
$node->nodeAggregateId,
FindChildNodesFilter::create(nodeTypeConstraints:
$this->buildContentChildNodeFilterString()
FindChildNodesFilter::create(
nodeTypeConstraints: $this->buildContentChildNodeFilterString()
)
);
$childNodes = $documentChildNodes->merge($contentChildNodes);
Expand Down

0 comments on commit 684bb2f

Please sign in to comment.