Skip to content

Commit 7e16204

Browse files
committed
Shift to PHPUnit 8
1 parent fb58366 commit 7e16204

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor/
22
/build/
33
.env
4+
.phpunit.result.cache

tests/Feature/BlueprintTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class BlueprintTest extends TestCase
1515
*/
1616
private $subject;
1717

18-
protected function setUp()
18+
protected function setUp(): void
1919
{
2020
parent::setUp();
2121

tests/Feature/Generator/FactoryGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class FactoryGeneratorTest extends TestCase
1515
/** @var FactoryGenerator */
1616
private $subject;
1717

18-
protected function setUp()
18+
protected function setUp(): void
1919
{
2020
parent::setUp();
2121

tests/Feature/Generator/MigrationGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class MigrationGeneratorTest extends TestCase
1616
/** @var MigrationGenerator */
1717
private $subject;
1818

19-
protected function setUp()
19+
protected function setUp(): void
2020
{
2121
parent::setUp();
2222

tests/Feature/Generator/ModelGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ModelGeneratorTest extends TestCase
1515
/** @var ModelGenerator */
1616
private $subject;
1717

18-
protected function setUp()
18+
protected function setUp(): void
1919
{
2020
parent::setUp();
2121

tests/Feature/Lexers/ModelLexerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ModelLexerTest extends TestCase
1212
*/
1313
private $subject;
1414

15-
protected function setUp()
15+
protected function setUp(): void
1616
{
1717
parent::setUp();
1818

0 commit comments

Comments
 (0)