Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,044 changes: 578 additions & 466 deletions composer.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion tests/_support/DatabaseTestCase.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tests\Support;

use CodeIgniter\Database\Seeder;
Expand Down Expand Up @@ -42,7 +44,7 @@ abstract class DatabaseTestCase extends CIUnitTestCase
* Note that running "all" runs migrations in date order,
* but specifying namespaces runs them in namespace order (then date)
*
* @var array|string|null
* @var list<string>|string|null
*/
protected $namespace = 'App';

Expand Down
2 changes: 2 additions & 0 deletions tests/_support/FeatureTestCase.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tests\Support;

use CodeIgniter\Router\RouteCollection;
Expand Down
2 changes: 2 additions & 0 deletions tests/database/FakerTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use App\Entities\Dungeon;
use App\Entities\Monster;
use App\Models\DungeonModel;
Expand Down
2 changes: 2 additions & 0 deletions tests/database/HeroTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use App\Models\HeroModel;
use Tests\Support\DatabaseTestCase;

Expand Down
2 changes: 2 additions & 0 deletions tests/feature/HomeTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Tests\Support\FeatureTestCase;

/**
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/HealthTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use CodeIgniter\Test\CIUnitTestCase;
use Config\App;
use Tests\Support\Libraries\ConfigReader;
Expand Down
Loading