Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 1e29e7f

Browse files
update for phpunit 8
1 parent 28a1548 commit 1e29e7f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

phpunit.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
convertNoticesToExceptions="true"
77
convertWarningsToExceptions="true"
88
processIsolation="false"
9-
stopOnFailure="false"
10-
syntaxCheck="false">
9+
stopOnFailure="false">
1110
<testsuites>
1211
<testsuite name="Application Test Suite">
1312
<directory>./tests/</directory>

tests/Tests/DatabaseMySqlSchemaGrammarTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace Tests;
44

5-
use Dyrynda\Database\Blueprint;
65
use Mockery as m;
7-
use PHPUnit_Framework_TestCase;
6+
use Dyrynda\Database\Blueprint;
7+
use PHPUnit\Framework\TestCase;
88

9-
class DatabaseMySqlSchemaGrammarTest extends PHPUnit_Framework_TestCase
9+
class DatabaseMySqlSchemaGrammarTest extends TestCase
1010
{
11-
public function tearDown()
11+
public function tearDown(): void
1212
{
1313
m::close();
1414
}

0 commit comments

Comments
 (0)