diff --git a/composer.json b/composer.json index 1d241ad5e50..dd8901d5d78 100644 --- a/composer.json +++ b/composer.json @@ -34,9 +34,9 @@ "rector/rector-symfony": "dev-main", "sebastian/diff": "^9.0", "symfony/console": "^6.4.24", - "symfony/filesystem": "^7.4", - "symfony/finder": "^6.4", - "symfony/process": "^7.4", + "symfony/filesystem": "^8.1", + "symfony/finder": "^8.1", + "symfony/process": "^8.1", "symplify/easy-parallel": "^11.2.2", "symplify/rule-doc-generator-contracts": "^11.2", "webmozart/assert": "^2.4" @@ -48,8 +48,8 @@ "phpstan/phpstan-deprecation-rules": "^2.0", "phpstan/phpstan-phpunit": "^2.0", "phpstan/phpstan-webmozart-assert": "^2.0", - "phpunit/phpunit": "^13.0", - "rector/jack": "^1.0", + "phpunit/phpunit": "^13.2", + "rector/jack": "^1.1", "rector/swiss-knife": "^2.4.1", "shipmonk/composer-dependency-analyser": "^1.8", "symplify/easy-coding-standard": "^13.2.13", diff --git a/rules/Php81/Rector/Array_/ArrayToFirstClassCallableRector.php b/rules/Php81/Rector/Array_/ArrayToFirstClassCallableRector.php index 30609679dce..6512455c472 100644 --- a/rules/Php81/Rector/Array_/ArrayToFirstClassCallableRector.php +++ b/rules/Php81/Rector/Array_/ArrayToFirstClassCallableRector.php @@ -31,7 +31,7 @@ * @see RFC https://wiki.php.net/rfc/first_class_callable_syntax * @see \Rector\Tests\Php81\Rector\Array_\ArrayToFirstClassCallableRector\ArrayToFirstClassCallableRectorTest */ -class ArrayToFirstClassCallableRector extends AbstractRector implements MinPhpVersionInterface +final class ArrayToFirstClassCallableRector extends AbstractRector implements MinPhpVersionInterface { public function __construct( private readonly ArrayCallableMethodMatcher $arrayCallableMethodMatcher,