Skip to content

Commit

Permalink
Return void for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darkin1 committed Feb 22, 2020
1 parent d2359b6 commit d3b9c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/HelloWorldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
*/
class HelloWorldTest extends \PHPUnit\Framework\TestCase
{
public function setUp()
public function setUp(): void
{
}

public function testHelloWorld()
public function testHelloWorld(): void
{
$this->assertEquals('Hello World', 'Hello World');
}
Expand Down

0 comments on commit d3b9c63

Please sign in to comment.