Merge pull request #9226 from codeigniter4/dependabot/composer/rector/rector-1.2.7

chore(deps-dev): update rector/rector requirement from 1.2.6 to 1.2.7
This commit is contained in:
Abdul Malik Ikhsan 2024-10-16 03:03:52 +07:00 committed by GitHub
commit 81e6289b4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 14 deletions

View File

@ -28,7 +28,7 @@
"phpunit/phpcov": "^9.0.2 || ^10.0",
"phpunit/phpunit": "^10.5.16 || ^11.2",
"predis/predis": "^1.1 || ^2.0",
"rector/rector": "1.2.6"
"rector/rector": "1.2.7"
},
"replace": {
"codeigniter4/framework": "self.version"

View File

@ -15145,18 +15145,6 @@ $ignoreErrors[] = [
'count' => 2,
'path' => __DIR__ . '/tests/system/Helpers/FilesystemHelperTest.php',
];
$ignoreErrors[] = [
// identifier: property.phpDocType
'message' => '#^PHPDoc tag @var for property CodeIgniter\\\\Helpers\\\\FilesystemHelperTest\\:\\:\\$structure with type mixed is not subtype of native type array\\.$#',
'count' => 1,
'path' => __DIR__ . '/tests/system/Helpers/FilesystemHelperTest.php',
];
$ignoreErrors[] = [
// identifier: missingType.iterableValue
'message' => '#^Property CodeIgniter\\\\Helpers\\\\FilesystemHelperTest\\:\\:\\$structure type has no value type specified in iterable type array\\.$#',
'count' => 1,
'path' => __DIR__ . '/tests/system/Helpers/FilesystemHelperTest.php',
];
$ignoreErrors[] = [
// identifier: argument.type
'message' => '#^Parameter \\#2 \\$value of function form_hidden expects array\\|string, null given\\.$#',

View File

@ -25,7 +25,7 @@ use PHPUnit\Framework\Attributes\Group;
final class FilesystemHelperTest extends CIUnitTestCase
{
/**
* @var array<string, array<string, list<mixed>>>|array<string, array<string, string>>|array<string, list<mixed>>|array<string, mixed>|array<string, string>|mixed
* @var array<string, array<string, list<mixed>>>|array<string, array<string, string>>|array<string, list<mixed>>|array<string, mixed>|array<string, string>
*/
private array $structure;