Skip to content

Commit 6a6d470

Browse files
committed
Laravel Pint
1 parent 2281c63 commit 6a6d470

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
colors="true"
65
forceCoversAnnotation="true"
76
beStrictAboutCoversAnnotation="true"
87
>
@@ -19,6 +18,7 @@
1918

2019
<report>
2120
<html outputDirectory=".coverage"/>
21+
<text outputFile="php://stdout"/>
2222
</report>
2323
</coverage>
2424
</phpunit>

tests/Commands/GenerateQuestions/ArtisanOptimizeQuestionTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/**
1010
* @uses \BlameButton\LaravelDockerBuilder\DockerServiceProvider
1111
* @uses \BlameButton\LaravelDockerBuilder\Commands\GenerateQuestions\Choices\ArtisanOptimize
12+
*
1213
* @covers \BlameButton\LaravelDockerBuilder\Commands\GenerateQuestions\ArtisanOptimizeQuestion
1314
*/
1415
class ArtisanOptimizeQuestionTest extends TestCase

tests/Commands/GenerateQuestions/NodeBuildToolQuestionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
/**
1414
* @uses \BlameButton\LaravelDockerBuilder\DockerServiceProvider
1515
* @uses \BlameButton\LaravelDockerBuilder\Commands\GenerateQuestions\Choices\NodeBuildTool
16+
*
1617
* @covers \BlameButton\LaravelDockerBuilder\Commands\GenerateQuestions\NodeBuildToolQuestion
1718
*/
1819
class NodeBuildToolQuestionTest extends TestCase
@@ -78,5 +79,4 @@ public function testItDetectsBuildTools($expected, $detected): void
7879

7980
self::assertEquals($expected, $answer);
8081
}
81-
8282
}

tests/TestCase.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
use BlameButton\LaravelDockerBuilder\DockerServiceProvider;
66
use Orchestra\Testbench\TestCase as Orchestra;
77

8-
/**
9-
*/
108
class TestCase extends Orchestra
119
{
1210
protected function getPackageProviders($app): array

0 commit comments

Comments
 (0)