Skip to content

Commit

Permalink
Updated Rector to commit 2977d09
Browse files Browse the repository at this point in the history
rectorphp/rector-src@2977d09 [Doc] Register Troubleshoot Parallel Issues documentation in Readme (#2764)
  • Loading branch information
TomasVotruba committed Aug 15, 2022
1 parent 9fdeaca commit d771949
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ By [buying a book](https://leanpub.com/rector-the-power-of-automated-refactoring
- [Static Reflection and Autoload](/docs/static_reflection_and_autoload.md)
- [How to Configure Rule](/docs/how_to_configure_rules.md)
- [Auto Import Names](/docs/auto_import_names.md)
- [How to Troubleshoot Parallel Issues](/docs/how_to_troubleshoot_parallel_issues.md)

### For Rule Developers and Contributors

Expand Down
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '933eb1353d193ca90bdb02265039469c620ad46f';
public const PACKAGE_VERSION = '2977d091b2a7dfcddf855c376534a835876e3ffd';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2022-08-15 20:29:45';
public const RELEASE_DATE = '2022-08-15 20:31:16';
/**
* @var int
*/
Expand Down
2 changes: 1 addition & 1 deletion vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInit0b15c78ce0d00bb03bcf1e3fa7211fcd::getLoader();
return ComposerAutoloaderInit30e12c774bc11b584246cf359fb708c1::getLoader();
14 changes: 7 additions & 7 deletions vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInit0b15c78ce0d00bb03bcf1e3fa7211fcd
class ComposerAutoloaderInit30e12c774bc11b584246cf359fb708c1
{
private static $loader;

Expand All @@ -22,19 +22,19 @@ public static function getLoader()
return self::$loader;
}

spl_autoload_register(array('ComposerAutoloaderInit0b15c78ce0d00bb03bcf1e3fa7211fcd', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit30e12c774bc11b584246cf359fb708c1', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit0b15c78ce0d00bb03bcf1e3fa7211fcd', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit30e12c774bc11b584246cf359fb708c1', 'loadClassLoader'));

require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit30e12c774bc11b584246cf359fb708c1::getInitializer($loader));

$loader->setClassMapAuthoritative(true);
$loader->register(true);

$includeFiles = \Composer\Autoload\ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd::$files;
$includeFiles = \Composer\Autoload\ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$files;
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire0b15c78ce0d00bb03bcf1e3fa7211fcd($fileIdentifier, $file);
composerRequire30e12c774bc11b584246cf359fb708c1($fileIdentifier, $file);
}

return $loader;
Expand All @@ -46,7 +46,7 @@ public static function getLoader()
* @param string $file
* @return void
*/
function composerRequire0b15c78ce0d00bb03bcf1e3fa7211fcd($fileIdentifier, $file)
function composerRequire30e12c774bc11b584246cf359fb708c1($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
Expand Down
8 changes: 4 additions & 4 deletions vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Composer\Autoload;

class ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd
class ComposerStaticInit30e12c774bc11b584246cf359fb708c1
{
public static $files = array (
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
Expand Down Expand Up @@ -3250,9 +3250,9 @@ class ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit0b15c78ce0d00bb03bcf1e3fa7211fcd::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$classMap;

}, null, ClassLoader::class);
}
Expand Down

0 comments on commit d771949

Please sign in to comment.