Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 27, 2019
1 parent b5ffd4a commit 3ea1a91
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
],
"require": {
"php": "^7.2",
"laravel/nova": "*",
"laravel/nova": "^2.0",
"illuminate/support": "^5.8",
"spatie/laravel-backup": "^6.0"
},
"require-dev": {
"orchestra/testbench": "^3.6",
"phpunit/phpunit": "7.1",
"spatie/phpunit-snapshot-assertions": "^1.3"
"orchestra/testbench": "^3.8",
"phpunit/phpunit": "8.0",
"spatie/phpunit-snapshot-assertions": "^2.0"
},
"repositories": [
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Controllers/BackupsControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class BackupsControllerTest extends TestCase
{
public function setUp()
public function setUp(): void
{
parent::setUp();

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

class CleanBackupsControllerTest extends TestCase
{
public function setUp()
public function setUp(): void
{
parent::setUp();

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

class DownloadBackupControllerTest extends TestCase
{
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 @@ -14,7 +14,7 @@ abstract class TestCase extends Orchestra
/** @var \Illuminate\Filesystem\Filesystem */
protected $filesystem;

public function setUp()
public function setUp(): void
{
$this->filesystem = new Filesystem();

Expand Down

0 comments on commit 3ea1a91

Please sign in to comment.