Updated Rector to commit 50378fc1cd17831d6a71948d82b109083547e0f4

50378fc1cd [Privatization]  Skip variable assign append on ChangeReadOnlyVariableWithDefaultValueToConstantRector (#3687)
This commit is contained in:
Tomas Votruba 2023-04-27 18:53:05 +00:00
parent 6773471488
commit 5ee794501a
5 changed files with 13 additions and 13 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'f19c86c993bb1fe1b487fce587d6582ef9f29a6a';
public const PACKAGE_VERSION = '50378fc1cd17831d6a71948d82b109083547e0f4';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-04-28 01:16:24';
public const RELEASE_DATE = '2023-04-28 01:49:06';
/**
* @var int
*/

View File

@ -98,7 +98,7 @@ final class AssignManipulator
$previousParent = $parentNode;
$parentNode = $parentNode->getAttribute(AttributeKey::PARENT_NODE);
}
if ($parentNode instanceof Assign) {
if ($parentNode instanceof Assign || $parentNode instanceof AssignOp || $parentNode instanceof PreDec || $parentNode instanceof PreInc || $parentNode instanceof PostDec || $parentNode instanceof PostInc) {
return $parentNode->var === $previousParent;
}
}

2
vendor/autoload.php vendored
View File

@ -22,4 +22,4 @@ if (PHP_VERSION_ID < 50600) {
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit8163868b642590024898104a9c4aed0e::getLoader();
return ComposerAutoloaderInit322277cb2f8973b7f5ee663551db1959::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit8163868b642590024898104a9c4aed0e
class ComposerAutoloaderInit322277cb2f8973b7f5ee663551db1959
{
private static $loader;
@ -22,17 +22,17 @@ class ComposerAutoloaderInit8163868b642590024898104a9c4aed0e
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit8163868b642590024898104a9c4aed0e', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit322277cb2f8973b7f5ee663551db1959', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit8163868b642590024898104a9c4aed0e', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit322277cb2f8973b7f5ee663551db1959', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit8163868b642590024898104a9c4aed0e::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit322277cb2f8973b7f5ee663551db1959::getInitializer($loader));
$loader->setClassMapAuthoritative(true);
$loader->register(true);
$filesToLoad = \Composer\Autoload\ComposerStaticInit8163868b642590024898104a9c4aed0e::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInit322277cb2f8973b7f5ee663551db1959::$files;
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload;
class ComposerStaticInit8163868b642590024898104a9c4aed0e
class ComposerStaticInit322277cb2f8973b7f5ee663551db1959
{
public static $files = array (
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
@ -3152,9 +3152,9 @@ class ComposerStaticInit8163868b642590024898104a9c4aed0e
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit8163868b642590024898104a9c4aed0e::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit8163868b642590024898104a9c4aed0e::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit8163868b642590024898104a9c4aed0e::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit322277cb2f8973b7f5ee663551db1959::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit322277cb2f8973b7f5ee663551db1959::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit322277cb2f8973b7f5ee663551db1959::$classMap;
}, null, ClassLoader::class);
}