Skip to content

Commit

Permalink
fix(codestyle): add support for php8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rtm-ctrlz committed Dec 22, 2024
1 parent ccbc8b5 commit 8ea4852
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Phpunit/MockedFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MockedFunction extends AbstractMocked
public function __construct(
TestCase $testCase,
string $function,
InvocationOrder $invocationRule = null
?InvocationOrder $invocationRule = null
) {
$mockObject = null;
$method = null;
Expand Down
2 changes: 1 addition & 1 deletion src/Phpunit/MockedMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(
TestCase $testCase,
string $class,
string $method,
InvocationOrder $invocationRule = null
?InvocationOrder $invocationRule = null
) {
$this->mockObject = self::createEmptyMock($testCase, $method);

Expand Down

0 comments on commit 8ea4852

Please sign in to comment.