Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed May 31, 2024
1 parent 9b41b68 commit 70b0aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/ClassNameResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static function resolveFromFileContents(string $fileContents): ?string
$classMatch = Strings::match($fileContents, self::SHORT_CLASS_NAME_REGEX);

// short class must exist
if (!isset($classMatch['short_class_name'])) {
if (! isset($classMatch['short_class_name'])) {
return null;
}

Expand Down

0 comments on commit 70b0aed

Please sign in to comment.