Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update php-cs-fixer to v3.47.1 #8422

Merged
merged 4 commits into from
Jan 17, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test: composer cs-fix
kenjis committed Jan 16, 2024
commit 8b2a99122aebcd2f462a53eac3f1b03249a7c12c
6 changes: 3 additions & 3 deletions tests/system/Database/Live/SQLite/GetIndexDataTest.php
Original file line number Diff line number Diff line change
@@ -75,19 +75,19 @@ public function testGetIndexData(): void

$expectedIndexes = [];

$row = new stdclass();
$row = new stdClass();
$row->name = 'PRIMARY';
$row->fields = ['id'];
$row->type = 'PRIMARY';
$expectedIndexes['PRIMARY'] = $row;

$row = new stdclass();
$row = new stdClass();
$row->name = 'testuser_email';
$row->fields = ['email'];
$row->type = 'UNIQUE';
$expectedIndexes['testuser_email'] = $row;

$row = new stdclass();
$row = new stdClass();
$row->name = 'testuser_country';
$row->fields = ['country'];
$row->type = 'INDEX';
2 changes: 1 addition & 1 deletion tests/system/Debug/ExceptionsTest.php
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ final class ExceptionsTest extends CIUnitTestCase
{
use ReflectionHelper;

private \CodeIgniter\Debug\Exceptions $exception;
private Exceptions $exception;

public static function setUpBeforeClass(): void
{
2 changes: 1 addition & 1 deletion tests/system/View/ViewTest.php
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ final class ViewTest extends CIUnitTestCase
{
private FileLocator $loader;
private string $viewsDir;
private \Config\View $config;
private Config\View $config;

protected function setUp(): void
{

Unchanged files with check annotations Beta

<?php

Check failure on line 1 in system/Database/SQLite3/Table.php

GitHub Actions / PHP Static Analysis

Ignored error pattern #^Class stdClass referenced with incorrect case\: stdclass\.$# in path /home/runner/work/CodeIgniter4/CodeIgniter4/system/Database/SQLite3/Table.php was not matched in reported errors.
/**
* This file is part of CodeIgniter 4 framework.