Skip to content

Commit

Permalink
update composer, add return type to setUp method to clear errors
Browse files Browse the repository at this point in the history
  • Loading branch information
drfraker committed Mar 4, 2019
1 parent a075099 commit fb41a28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
}
],
"require": {
"php": "^7.1.3"
"php": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^3.7"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion tests/SnipeMigrationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class SnipeMigrationsTest extends TestCase
{
protected $snipe;

public function setUp()
public function setUp() :void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class TestCase extends \Orchestra\Testbench\TestCase
{
public function setUp()
public function setUp() : void
{
parent::setUp();
}
Expand Down

0 comments on commit fb41a28

Please sign in to comment.