Skip to content

Commit

Permalink
TASK: Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Feb 10, 2024
1 parent d39df08 commit b573bab
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ public function processNode(Node $node, Scope $scope): array
{
assert($node instanceof Node\Expr\CallLike);

if ($scope->getNamespace() &&
(
if (
$scope->getNamespace()
&& (
str_starts_with($scope->getNamespace(), 'Neos\ContentRepository\Core')
|| str_starts_with($scope->getNamespace(), 'Neos\ContentGraph\DoctrineDbalAdapter')
|| str_starts_with($scope->getNamespace(), 'Neos\ContentRepository\BehavioralTests')
Expand Down

0 comments on commit b573bab

Please sign in to comment.