Skip to content

Commit 4409bed

Browse files
committed
fix rector
1 parent 43ac823 commit 4409bed

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

tests/_support/DatabaseTestCase.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tests\Support;
46

57
use CodeIgniter\Database\Seeder;

tests/_support/FeatureTestCase.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tests\Support;
46

57
use CodeIgniter\Router\RouteCollection;

tests/database/FakerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use App\Entities\Dungeon;
46
use App\Entities\Monster;
57
use App\Models\DungeonModel;

tests/database/HeroTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use App\Models\HeroModel;
46
use Tests\Support\DatabaseTestCase;
57

tests/feature/HomeTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use Tests\Support\FeatureTestCase;
46

57
/**

tests/unit/HealthTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use CodeIgniter\Test\CIUnitTestCase;
46
use Config\App;
57
use Tests\Support\Libraries\ConfigReader;

0 commit comments

Comments
 (0)