Skip to content

Commit

Permalink
Updated Rector to commit 45c46ddf40f27d0d2793c6bd99b66c91a8fdf4f8
Browse files Browse the repository at this point in the history
rectorphp/rector-src@45c46dd [DX] Fix hang on twice run after all files processed cached (#4521)
  • Loading branch information
TomasVotruba committed Jul 15, 2023
1 parent 9965650 commit 191ead1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Application/ApplicationFileProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ public function __construct(Filesystem $filesystem, FileDiffFileDecorator $fileD
public function run(Configuration $configuration, InputInterface $input) : array
{
$filePaths = $this->fileFactory->findFilesInPaths($configuration->getPaths(), $configuration);
$filePaths = $this->resolveFilePathsByConfigurationFileExtensions($filePaths, $configuration);
// no files found
if ($filePaths === []) {
return [Bridge::SYSTEM_ERRORS => [], Bridge::FILE_DIFFS => []];
}
$this->configureCustomErrorHandler();
$filePaths = $this->resolveFilePathsByConfigurationFileExtensions($filePaths, $configuration);
if ($configuration->isParallel()) {
$systemErrorsAndFileDiffs = $this->runParallel($filePaths, $configuration, $input);
} else {
Expand Down
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'e77f6d21a97319f57f11a7e6eae9b583fe425c1e';
public const PACKAGE_VERSION = '45c46ddf40f27d0d2793c6bd99b66c91a8fdf4f8';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-07-15 07:45:34';
public const RELEASE_DATE = '2023-07-15 12:07:23';
/**
* @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 @@ -22,4 +22,4 @@

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

return ComposerAutoloaderInit39d1f21f0961349af70a1323053c942a::getLoader();
return ComposerAutoloaderInit55e76aa0da41c77e2c57285ed0279a9a::getLoader();
10 changes: 5 additions & 5 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 ComposerAutoloaderInit39d1f21f0961349af70a1323053c942a
class ComposerAutoloaderInit55e76aa0da41c77e2c57285ed0279a9a
{
private static $loader;

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

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

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

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

$filesToLoad = \Composer\Autoload\ComposerStaticInit39d1f21f0961349af70a1323053c942a::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInit55e76aa0da41c77e2c57285ed0279a9a::$files;
$requireFile = \Closure::bind(static function ($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 ComposerStaticInit39d1f21f0961349af70a1323053c942a
class ComposerStaticInit55e76aa0da41c77e2c57285ed0279a9a
{
public static $files = array (
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
Expand Down Expand Up @@ -3028,9 +3028,9 @@ class ComposerStaticInit39d1f21f0961349af70a1323053c942a
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit39d1f21f0961349af70a1323053c942a::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit39d1f21f0961349af70a1323053c942a::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit39d1f21f0961349af70a1323053c942a::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit55e76aa0da41c77e2c57285ed0279a9a::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit55e76aa0da41c77e2c57285ed0279a9a::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit55e76aa0da41c77e2c57285ed0279a9a::$classMap;

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

0 comments on commit 191ead1

Please sign in to comment.