Updated Rector to commit edadb26ab4a156985027b8f685cdeecf4ea4b098

edadb26ab4 [Transform] Improve performance of AddAllowDynamicPropertiesAttributeRector (#4995)
This commit is contained in:
Tomas Votruba 2023-09-11 15:18:16 +00:00
parent 02ce33183a
commit abed52d2c1
5 changed files with 13 additions and 13 deletions

View File

@ -138,8 +138,8 @@ CODE_SAMPLE
if ($this->hasMagicSetMethod($class)) {
return \true;
}
$className = (string) $this->getName($class);
if ($this->transformOnNamespaces !== []) {
$className = (string) $this->getName($class);
return !$this->isExistsWithWildCards($className) && !$this->isExistsWithClassName($className);
}
return \false;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'f733c32f6c44c06faeba9ad5c46a62b8eee11748';
public const PACKAGE_VERSION = 'edadb26ab4a156985027b8f685cdeecf4ea4b098';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-09-11 21:58:13';
public const RELEASE_DATE = '2023-09-11 15:14:53';
/**
* @var int
*/

2
vendor/autoload.php vendored
View File

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

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit1003eb6ec3bf1c99d92643e59f44f5a6
class ComposerAutoloaderInit12d505a2f565ffa23cb2afeee6bf37bb
{
private static $loader;
@ -22,17 +22,17 @@ class ComposerAutoloaderInit1003eb6ec3bf1c99d92643e59f44f5a6
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit1003eb6ec3bf1c99d92643e59f44f5a6', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit12d505a2f565ffa23cb2afeee6bf37bb', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit1003eb6ec3bf1c99d92643e59f44f5a6', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit12d505a2f565ffa23cb2afeee6bf37bb', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit12d505a2f565ffa23cb2afeee6bf37bb::getInitializer($loader));
$loader->setClassMapAuthoritative(true);
$loader->register(true);
$filesToLoad = \Composer\Autoload\ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInit12d505a2f565ffa23cb2afeee6bf37bb::$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 ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6
class ComposerStaticInit12d505a2f565ffa23cb2afeee6bf37bb
{
public static $files = array (
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
@ -2595,9 +2595,9 @@ class ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit1003eb6ec3bf1c99d92643e59f44f5a6::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit12d505a2f565ffa23cb2afeee6bf37bb::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit12d505a2f565ffa23cb2afeee6bf37bb::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit12d505a2f565ffa23cb2afeee6bf37bb::$classMap;
}, null, ClassLoader::class);
}