Updated Rector to commit 3680497911

3680497911 Fix broken link in README.md (#887)
This commit is contained in:
Tomas Votruba 2021-09-15 15:25:23 +00:00
parent 6f36e4ebba
commit 3c1803d625
6 changed files with 20 additions and 20 deletions

View File

@ -48,7 +48,7 @@ By [buying a book](https://leanpub.com/rector-the-power-of-automated-refactoring
- [How to Work with Doc Block and Comments](/docs/how_to_work_with_doc_block_and_comments.md)
- [How to Generate New Rector Rule](/docs/create_own_rule.md)
- [How to add Test for Rector Rule](/docs/how_to_add_test_for_rector_rule.md)
- [How to create a custom FileProcessor](/docs/create_custom_fileprocessor.md)
- [How to create a custom FileProcessor](/docs/how_to_create_custom_fileprocessor.md)
<br>
## Install

View File

@ -16,11 +16,11 @@ final class VersionResolver
/**
* @var string
*/
public const PACKAGE_VERSION = '9c52b6367df314666469b583e5a23c80750ed0f6';
public const PACKAGE_VERSION = '36804979111ac8ece639d35d8640eee3b6efd28e';
/**
* @var string
*/
public const RELEASE_DATE = '2021-09-15 21:03:18';
public const RELEASE_DATE = '2021-09-15 15:11:17';
public static function resolvePackageVersion() : string
{
$process = new \RectorPrefix20210915\Symfony\Component\Process\Process(['git', 'log', '--pretty="%H"', '-n1', 'HEAD'], __DIR__);

2
vendor/autoload.php vendored
View File

@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36::getLoader();
return ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36
class ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7
{
private static $loader;
@ -22,15 +22,15 @@ class ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
spl_autoload_unregister(array('ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit678da0b051813e94591ad61fc72c2fe7::getInitializer($loader));
} else {
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
@ -42,19 +42,19 @@ class ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36
$loader->register(true);
if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36::$files;
$includeFiles = Composer\Autoload\ComposerStaticInit678da0b051813e94591ad61fc72c2fe7::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire0a61a9fb5efb0f54d141d395e1014b36($fileIdentifier, $file);
composerRequire678da0b051813e94591ad61fc72c2fe7($fileIdentifier, $file);
}
return $loader;
}
}
function composerRequire0a61a9fb5efb0f54d141d395e1014b36($fileIdentifier, $file)
function composerRequire678da0b051813e94591ad61fc72c2fe7($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload;
class ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36
class ComposerStaticInit678da0b051813e94591ad61fc72c2fe7
{
public static $files = array (
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
@ -3858,9 +3858,9 @@ class ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit0a61a9fb5efb0f54d141d395e1014b36::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit678da0b051813e94591ad61fc72c2fe7::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit678da0b051813e94591ad61fc72c2fe7::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit678da0b051813e94591ad61fc72c2fe7::$classMap;
}, null, ClassLoader::class);
}

View File

@ -9,8 +9,8 @@ $loader = require_once __DIR__.'/autoload.php';
if (!class_exists('AutoloadIncluder', false) && !interface_exists('AutoloadIncluder', false) && !trait_exists('AutoloadIncluder', false)) {
spl_autoload_call('RectorPrefix20210915\AutoloadIncluder');
}
if (!class_exists('ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36', false) && !interface_exists('ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36', false) && !trait_exists('ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36', false)) {
spl_autoload_call('RectorPrefix20210915\ComposerAutoloaderInit0a61a9fb5efb0f54d141d395e1014b36');
if (!class_exists('ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7', false) && !interface_exists('ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7', false) && !trait_exists('ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7', false)) {
spl_autoload_call('RectorPrefix20210915\ComposerAutoloaderInit678da0b051813e94591ad61fc72c2fe7');
}
if (!class_exists('Helmich\TypoScriptParser\Parser\AST\Statement', false) && !interface_exists('Helmich\TypoScriptParser\Parser\AST\Statement', false) && !trait_exists('Helmich\TypoScriptParser\Parser\AST\Statement', false)) {
spl_autoload_call('RectorPrefix20210915\Helmich\TypoScriptParser\Parser\AST\Statement');
@ -3311,9 +3311,9 @@ if (!function_exists('print_node')) {
return \RectorPrefix20210915\print_node(...func_get_args());
}
}
if (!function_exists('composerRequire0a61a9fb5efb0f54d141d395e1014b36')) {
function composerRequire0a61a9fb5efb0f54d141d395e1014b36() {
return \RectorPrefix20210915\composerRequire0a61a9fb5efb0f54d141d395e1014b36(...func_get_args());
if (!function_exists('composerRequire678da0b051813e94591ad61fc72c2fe7')) {
function composerRequire678da0b051813e94591ad61fc72c2fe7() {
return \RectorPrefix20210915\composerRequire678da0b051813e94591ad61fc72c2fe7(...func_get_args());
}
}
if (!function_exists('parseArgs')) {