Skip to content

Commit

Permalink
Merge pull request #59 from dreamfactorysoftware/fix-php-7.3
Browse files Browse the repository at this point in the history
Fix backward incompatible changes of php 7.3 and phpunit
  • Loading branch information
yaroslavmo authored Nov 27, 2019
2 parents 9a7ca9c + 5abde71 commit 1f135c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Database/Schema/ColumnSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function fill(array $settings)
case 'dbFunction':
case 'validation':
// don't let extras override these
continue;
continue 2;
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Testing/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static function setupBeforeClass()
/**
* Runs before every test.
*/
public function setUp()
public function setUp() :void
{
parent::setUp();

Expand Down

0 comments on commit 1f135c3

Please sign in to comment.