Skip to content

Commit

Permalink
Remove return types
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmai committed Aug 21, 2020
1 parent c90abb4 commit 4d42265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ private static function add(string $methodName)
self::$callSequence[] = $methodName;
}

public static function getActualCallSequence(): array
public static function getActualCallSequence()
{
return self::$callSequence;
}

public static function getExpectedCallSequence(): array
public static function getExpectedCallSequence()
{
return \array_map(function (string $method): string {
return \array_map(function ($method) {
return self::class.$method;
}, self::EXPECTED_SEQUENCE);
}
Expand Down

0 comments on commit 4d42265

Please sign in to comment.