Skip to content

Commit

Permalink
Merge pull request #107 from dwyl/feature/build
Browse files Browse the repository at this point in the history
Fixes failing tests, PHP 7.2 compatible phpunit
  • Loading branch information
overtrue authored May 26, 2019
2 parents 53009ab + d1b3472 commit adfe884
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: php

php:
- 7.0
- 7.1
- 7.2
- 7.3

dist: trusty
sudo: false
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function createApplication()
/**
* Setup DB before each test.
*/
protected function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down Expand Up @@ -74,7 +74,7 @@ public function migrate()
(new \CreateOthersTable())->up();
}

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

Expand Down

0 comments on commit adfe884

Please sign in to comment.