Skip to content

Commit c362156

Browse files
Format code
1 parent ba3c01d commit c362156

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
},
2323
"require-dev": {
2424
"brianium/paratest": "^7.4",
25+
"laravel/pint": "^1.21",
2526
"nunomaduro/collision": "^8.0",
2627
"orchestra/testbench": "^9.0|^10.0",
2728
"phpunit/phpunit": "^10.0|^11.5.3",

tests/CacheTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@
88
class CacheTest extends TestCase
99
{
1010
protected $first_value;
11+
1112
protected $second_value;
13+
1214
protected $third_value;
1315

14-
public function setUp(): void
16+
protected function setUp(): void
1517
{
1618
parent::setUp();
1719

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class TestCase extends Orchestra
1010
{
11-
public function setUp(): void
11+
protected function setUp(): void
1212
{
1313
parent::setUp();
1414

@@ -34,6 +34,6 @@ public function getEnvironmentSetUp($app)
3434
(new \CreatePackageTable())->up();
3535
*/
3636

37-
$app['config']->set('view.paths', [__DIR__ . '/resources/views']);
37+
$app['config']->set('view.paths', [__DIR__.'/resources/views']);
3838
}
3939
}

0 commit comments

Comments
 (0)