Updated Rector to commit b98df68ebb65cc05b7faba113e8e81a56d501c08

b98df68ebb [TypeDeclaration] Allow change multiple methods on AddParamTypeDeclarationRector (#4727)
This commit is contained in:
Tomas Votruba 2023-08-09 06:40:30 +00:00
parent 6703dc85ab
commit e0af8c24c9
5 changed files with 15 additions and 15 deletions

View File

@ -95,9 +95,9 @@ CODE_SAMPLE
}
$this->refactorClassMethodWithTypehintByParameterPosition($classMethod, $addParamTypeDeclaration);
}
if (!$this->hasChanged) {
return null;
}
}
if (!$this->hasChanged) {
return null;
}
return $node;
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'ea91c99695a8a8108bad4428c7febcf4222a363d';
public const PACKAGE_VERSION = 'b98df68ebb65cc05b7faba113e8e81a56d501c08';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-08-09 09:12:07';
public const RELEASE_DATE = '2023-08-09 13:37:04';
/**
* @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 ComposerAutoloaderInitbf353b640ee0eb3c1e71c1ba56626918::getLoader();
return ComposerAutoloaderInit9a8e05d1aba7af0507aaf7d5dd267427::getLoader();

View File

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