Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinsFrank committed May 17, 2023
1 parent ce0058f commit 6423efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NoRegisteredServicesInBootMethodProviderRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function processNode(Node $node, Scope $scope): array
$var = $propertyFetch->var;
if ($propertyFetch->name instanceof Node\Identifier === false
|| (string) $propertyFetch->name !== 'app'
|| $var->name !== 'this'
|| $var->name !== 'this'
|| $node->name instanceof Node\Identifier === false
|| (string) $node->name !== 'register') {
return [];
Expand Down

0 comments on commit 6423efd

Please sign in to comment.