Updated Rector to commit 60857134fdd3e7eb935a721962c0866518e3471e

60857134fd [BetterPhpDocParser] Check for closing brace in text content (#8977) (#6670)
This commit is contained in:
Tomas Votruba 2025-01-16 09:34:43 +00:00
parent e864c7aa1f
commit 2259cc5a31
5 changed files with 25 additions and 10 deletions

View File

@ -1687,12 +1687,12 @@
"source": {
"type": "git",
"url": "https:\/\/github.com\/rectorphp\/rector-doctrine.git",
"reference": "26bf4e0d3d8faaad6c218f6a0a7fad115f5a2e88"
"reference": "ceda7a4cc43c702107cd456c71717fe89188eecd"
},
"dist": {
"type": "zip",
"url": "https:\/\/api.github.com\/repos\/rectorphp\/rector-doctrine\/zipball\/26bf4e0d3d8faaad6c218f6a0a7fad115f5a2e88",
"reference": "26bf4e0d3d8faaad6c218f6a0a7fad115f5a2e88",
"url": "https:\/\/api.github.com\/repos\/rectorphp\/rector-doctrine\/zipball\/ceda7a4cc43c702107cd456c71717fe89188eecd",
"reference": "ceda7a4cc43c702107cd456c71717fe89188eecd",
"shasum": ""
},
"require": {
@ -1715,7 +1715,7 @@
"tomasvotruba\/class-leak": "^2.0",
"tracy\/tracy": "^2.10"
},
"time": "2025-01-15T15:56:18+00:00",
"time": "2025-01-16T09:31:08+00:00",
"default-branch": true,
"type": "rector-extension",
"extra": {
@ -1804,12 +1804,12 @@
"source": {
"type": "git",
"url": "https:\/\/github.com\/rectorphp\/rector-phpunit.git",
"reference": "6b0e4f053e8e3d61ed94b1f7da3944638a5a806b"
"reference": "c0eaa380fbc73d8cff077f99cd804e70aff3aeef"
},
"dist": {
"type": "zip",
"url": "https:\/\/api.github.com\/repos\/rectorphp\/rector-phpunit\/zipball\/6b0e4f053e8e3d61ed94b1f7da3944638a5a806b",
"reference": "6b0e4f053e8e3d61ed94b1f7da3944638a5a806b",
"url": "https:\/\/api.github.com\/repos\/rectorphp\/rector-phpunit\/zipball\/c0eaa380fbc73d8cff077f99cd804e70aff3aeef",
"reference": "c0eaa380fbc73d8cff077f99cd804e70aff3aeef",
"shasum": ""
},
"require": {
@ -1830,7 +1830,7 @@
"tomasvotruba\/class-leak": "^1.2",
"tracy\/tracy": "^2.10"
},
"time": "2024-12-26T00:46:08+00:00",
"time": "2025-01-16T02:10:38+00:00",
"default-branch": true,
"type": "rector-extension",
"extra": {

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@ namespace Rector\RectorInstaller;
*/
final class GeneratedConfig
{
public const EXTENSIONS = array('rector/rector-doctrine' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-doctrine', 'relative_install_path' => '../../rector-doctrine', 'extra' => NULL, 'version' => 'dev-main 26bf4e0'), 'rector/rector-downgrade-php' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-downgrade-php', 'relative_install_path' => '../../rector-downgrade-php', 'extra' => NULL, 'version' => 'dev-main dd8086f'), 'rector/rector-phpunit' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-phpunit', 'relative_install_path' => '../../rector-phpunit', 'extra' => NULL, 'version' => 'dev-main 6b0e4f0'), 'rector/rector-symfony' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-symfony', 'relative_install_path' => '../../rector-symfony', 'extra' => NULL, 'version' => 'dev-main 4661c01'));
public const EXTENSIONS = array('rector/rector-doctrine' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-doctrine', 'relative_install_path' => '../../rector-doctrine', 'extra' => NULL, 'version' => 'dev-main ceda7a4'), 'rector/rector-downgrade-php' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-downgrade-php', 'relative_install_path' => '../../rector-downgrade-php', 'extra' => NULL, 'version' => 'dev-main dd8086f'), 'rector/rector-phpunit' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-phpunit', 'relative_install_path' => '../../rector-phpunit', 'extra' => NULL, 'version' => 'dev-main c0eaa38'), 'rector/rector-symfony' => array('install_path' => '/home/runner/work/rector-src/rector-src/rector-build/vendor/rector/rector-symfony', 'relative_install_path' => '../../rector-symfony', 'extra' => NULL, 'version' => 'dev-main 4661c01'));
private function __construct()
{
}

View File

@ -0,0 +1,11 @@
<?php
declare (strict_types=1);
namespace RectorPrefix202501;
use Rector\Config\RectorConfig;
use Rector\Doctrine\Orm28\Rector\MethodCall\IterateToToIterableRector;
return static function (RectorConfig $rectorConfig) : void {
// @see https://github.com/doctrine/orm/blob/2.8.x/UPGRADE.md#deprecated-doctrineormabstractqueryiterator
$rectorConfig->rule(IterateToToIterableRector::class);
};

View File

@ -44,6 +44,10 @@ final class DoctrineSetList
* @var string
*/
public const DOCTRINE_ORM_25 = __DIR__ . '/../../config/sets/doctrine-orm-25.php';
/**
* @var string
*/
public const DOCTRINE_ORM_28 = __DIR__ . '/../../config/sets/doctrine-orm-28.php';
/**
* @var string
*/