Skip to content

Commit

Permalink
Don't use PHP 7 return types in fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
aik099 committed Mar 28, 2024
1 parent 50043b2 commit eeef9ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fixtures/NoClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ class NoClass extends TestCase
{
use ProphecyTrait;

public function testProphesizeWithoutArguments(): void
public function testProphesizeWithoutArguments()
{
$prophecy = $this->prophesize()->reveal();

$this->assertInstanceOf(\stdClass::class, $prophecy);
}
}

0 comments on commit eeef9ba

Please sign in to comment.