Updated Rector to commit 571a1e6067342b21c2baaa10976103915299b0c6

571a1e6067 docs
This commit is contained in:
Tomas Votruba 2022-11-29 16:10:51 +00:00
parent 29f73e023d
commit ab712cfd9a
5 changed files with 21 additions and 26 deletions

View File

@ -20,18 +20,6 @@ Add Rector to your CI and let it **continuously refactor your code** and keep th
<br>
## Read a First Book About Rector
Are you curious, how Rector works internally, how to create your own rules and test them and why Rector was born? In May 2021 we've released the very first book: *Rector - The Power of Automated Refactoring*.
<a href="https://leanpub.com/rector-the-power-of-automated-refactoring">
<img src="https://github.com/rectorphp/the-power-of-automated-refactoring-feedback/raw/main/images/book_title.png">
</a>
By [buying a book](https://leanpub.com/rector-the-power-of-automated-refactoring) you directly support maintainers who are working on Rector.
<br>
## Documentation
- [Explore Rector Rules](/docs/rector_rules_overview.md)
@ -54,6 +42,13 @@ See [the full documentation](/docs).
<br>
## Learn Faster with a Book
Are you curious, how Rector works internally, how to create your own rules and test them and why Rector was born?
Read [Rector - The Power of Automated Refactoring](https://leanpub.com/rector-the-power-of-automated-refactoring) that will take you step by step through the Rector setup and how to create your own rules.
<br>
## Install
```bash

View File

@ -17,12 +17,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '85845707ba3326888bf7a7287f942dfc9d0a6783';
public const PACKAGE_VERSION = '571a1e6067342b21c2baaa10976103915299b0c6';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2022-11-29 17:02:39';
public const RELEASE_DATE = '2022-11-29 17:05:58';
/**
* @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 ComposerAutoloaderInit65f5af71ca80379b67814ec914adf11b::getLoader();
return ComposerAutoloaderInit47947e900796eaf4c11aea39ed778603::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit65f5af71ca80379b67814ec914adf11b
class ComposerAutoloaderInit47947e900796eaf4c11aea39ed778603
{
private static $loader;
@ -22,19 +22,19 @@ class ComposerAutoloaderInit65f5af71ca80379b67814ec914adf11b
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit65f5af71ca80379b67814ec914adf11b', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit47947e900796eaf4c11aea39ed778603', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit65f5af71ca80379b67814ec914adf11b', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit47947e900796eaf4c11aea39ed778603', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit65f5af71ca80379b67814ec914adf11b::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit47947e900796eaf4c11aea39ed778603::getInitializer($loader));
$loader->setClassMapAuthoritative(true);
$loader->register(true);
$includeFiles = \Composer\Autoload\ComposerStaticInit65f5af71ca80379b67814ec914adf11b::$files;
$includeFiles = \Composer\Autoload\ComposerStaticInit47947e900796eaf4c11aea39ed778603::$files;
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire65f5af71ca80379b67814ec914adf11b($fileIdentifier, $file);
composerRequire47947e900796eaf4c11aea39ed778603($fileIdentifier, $file);
}
return $loader;
@ -46,7 +46,7 @@ class ComposerAutoloaderInit65f5af71ca80379b67814ec914adf11b
* @param string $file
* @return void
*/
function composerRequire65f5af71ca80379b67814ec914adf11b($fileIdentifier, $file)
function composerRequire47947e900796eaf4c11aea39ed778603($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 ComposerStaticInit65f5af71ca80379b67814ec914adf11b
class ComposerStaticInit47947e900796eaf4c11aea39ed778603
{
public static $files = array (
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
@ -3021,9 +3021,9 @@ class ComposerStaticInit65f5af71ca80379b67814ec914adf11b
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit65f5af71ca80379b67814ec914adf11b::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit65f5af71ca80379b67814ec914adf11b::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit65f5af71ca80379b67814ec914adf11b::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit47947e900796eaf4c11aea39ed778603::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit47947e900796eaf4c11aea39ed778603::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit47947e900796eaf4c11aea39ed778603::$classMap;
}, null, ClassLoader::class);
}