Skip to content

Commit 8b2a991

Browse files
committed
test: composer cs-fix
1 parent 1d8eb00 commit 8b2a991

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/system/Database/Live/SQLite/GetIndexDataTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,19 +75,19 @@ public function testGetIndexData(): void
7575

7676
$expectedIndexes = [];
7777

78-
$row = new stdclass();
78+
$row = new stdClass();
7979
$row->name = 'PRIMARY';
8080
$row->fields = ['id'];
8181
$row->type = 'PRIMARY';
8282
$expectedIndexes['PRIMARY'] = $row;
8383

84-
$row = new stdclass();
84+
$row = new stdClass();
8585
$row->name = 'testuser_email';
8686
$row->fields = ['email'];
8787
$row->type = 'UNIQUE';
8888
$expectedIndexes['testuser_email'] = $row;
8989

90-
$row = new stdclass();
90+
$row = new stdClass();
9191
$row->name = 'testuser_country';
9292
$row->fields = ['country'];
9393
$row->type = 'INDEX';

tests/system/Debug/ExceptionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class ExceptionsTest extends CIUnitTestCase
3131
{
3232
use ReflectionHelper;
3333

34-
private \CodeIgniter\Debug\Exceptions $exception;
34+
private Exceptions $exception;
3535

3636
public static function setUpBeforeClass(): void
3737
{

tests/system/View/ViewTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final class ViewTest extends CIUnitTestCase
2727
{
2828
private FileLocator $loader;
2929
private string $viewsDir;
30-
private \Config\View $config;
30+
private Config\View $config;
3131

3232
protected function setUp(): void
3333
{

0 commit comments

Comments
 (0)