Updated Rector to commit fc8efa0fe446dd648d5d4d393e32ee06a8876837

fc8efa0fe4 fix typos in contributing.md (#2790)
This commit is contained in:
Tomas Votruba 2022-08-19 07:22:29 +00:00
parent 100b519996
commit 5150f80d61
5 changed files with 16 additions and 16 deletions

View File

@ -26,11 +26,11 @@ Then you can start working with the code :+1:
<br>
Do you want to **contribute a failing test**? [This tutorial will sow you how](https://github.com/rectorphp/rector/blob/main/docs/how_to_add_test_for_rector_rule.md)
Do you want to **contribute a failing test**? [This tutorial will show you how](https://github.com/rectorphp/rector/blob/main/docs/how_to_add_test_for_rector_rule.md)
## Preparing Pull Request
There 3 steps will make your pull-request easy to merge:
3 steps will make your pull-request easy to merge:
- **1 feature per pull-request**
- **new features need tests**

View File

@ -17,12 +17,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '67b0d0be7189576af6b74ade6011bdad6a230cb0';
public const PACKAGE_VERSION = 'fc8efa0fe446dd648d5d4d393e32ee06a8876837';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2022-08-19 08:41:02';
public const RELEASE_DATE = '2022-08-19 09:18:16';
/**
* @var int
*/

2
vendor/autoload.php vendored
View File

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

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit670fedfcd52b654273c3dc80a621b704
class ComposerAutoloaderInit9b88e2fade2c989a43020703f0872c92
{
private static $loader;
@ -22,19 +22,19 @@ class ComposerAutoloaderInit670fedfcd52b654273c3dc80a621b704
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit670fedfcd52b654273c3dc80a621b704', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit9b88e2fade2c989a43020703f0872c92', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit670fedfcd52b654273c3dc80a621b704', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit9b88e2fade2c989a43020703f0872c92', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit670fedfcd52b654273c3dc80a621b704::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit9b88e2fade2c989a43020703f0872c92::getInitializer($loader));
$loader->setClassMapAuthoritative(true);
$loader->register(true);
$includeFiles = \Composer\Autoload\ComposerStaticInit670fedfcd52b654273c3dc80a621b704::$files;
$includeFiles = \Composer\Autoload\ComposerStaticInit9b88e2fade2c989a43020703f0872c92::$files;
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire670fedfcd52b654273c3dc80a621b704($fileIdentifier, $file);
composerRequire9b88e2fade2c989a43020703f0872c92($fileIdentifier, $file);
}
return $loader;
@ -46,7 +46,7 @@ class ComposerAutoloaderInit670fedfcd52b654273c3dc80a621b704
* @param string $file
* @return void
*/
function composerRequire670fedfcd52b654273c3dc80a621b704($fileIdentifier, $file)
function composerRequire9b88e2fade2c989a43020703f0872c92($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 ComposerStaticInit670fedfcd52b654273c3dc80a621b704
class ComposerStaticInit9b88e2fade2c989a43020703f0872c92
{
public static $files = array (
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
@ -3252,9 +3252,9 @@ class ComposerStaticInit670fedfcd52b654273c3dc80a621b704
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit670fedfcd52b654273c3dc80a621b704::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit670fedfcd52b654273c3dc80a621b704::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit670fedfcd52b654273c3dc80a621b704::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit9b88e2fade2c989a43020703f0872c92::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit9b88e2fade2c989a43020703f0872c92::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit9b88e2fade2c989a43020703f0872c92::$classMap;
}, null, ClassLoader::class);
}