Skip to content

Commit

Permalink
Fix: Run 'php-cs-fixer fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and sebastianbergmann committed Jun 24, 2020
1 parent 5bc807b commit c946c41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Util/GlobalState.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ final class GlobalState
*/
public static function getIncludedFilesAsString(): string
{
return static::processIncludedFilesAsString(\get_included_files());
return self::processIncludedFilesAsString(\get_included_files());
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Util/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public static function getRequirements(string $className, string $methodName): a
*/
public static function getMissingRequirements(string $className, string $methodName): array
{
$required = static::getRequirements($className, $methodName);
$required = self::getRequirements($className, $methodName);
$missing = [];
$hint = null;

Expand Down

0 comments on commit c946c41

Please sign in to comment.