Updated Rector to commit b26175631cdad7feac444fac351120541ef3fa03

b26175631c Fix typo in error message (#4989)
This commit is contained in:
Tomas Votruba 2023-09-11 14:11:01 +00:00
parent 927d670ef2
commit 8a7560aff0
5 changed files with 13 additions and 13 deletions

View File

@ -100,7 +100,7 @@ final class RectorConfig extends Container
}
}
if ($notExistsRules !== []) {
throw new ShouldNotHappenException('Following skipped rules on $rectorConfig->skip() are no longer exists or changed to different namespace: ' . \implode(', ', $notExistsRules));
throw new ShouldNotHappenException('Following rules on $rectorConfig->skip() do no longer exist or changed to different namespace: ' . \implode(', ', $notExistsRules));
}
SimpleParameterProvider::addParameter(Option::SKIP, $criteria);
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '27d4c55bebe8706a74273d8c2379f59b75543c0e';
public const PACKAGE_VERSION = 'b26175631cdad7feac444fac351120541ef3fa03';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-09-11 20:43:31';
public const RELEASE_DATE = '2023-09-11 16:07:37';
/**
* @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 ComposerAutoloaderInitd7187bfac333e1eb6883a76ac659263c::getLoader();
return ComposerAutoloaderInit7af9d114e8d27258d58b8c416707d348::getLoader();

View File

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