Updated Rector to commit 9217e0da232258fecb049c6a08d165ebe70aa36b

9217e0da23 [ChangesReporting] Reuse defined errors vairable on ConsoleOutputFormatter (#4517)
This commit is contained in:
Tomas Votruba 2023-07-14 20:08:01 +00:00
parent 3da291ebaf
commit d67f0e438d
5 changed files with 13 additions and 13 deletions

View File

@ -48,7 +48,7 @@ final class ConsoleOutputFormatter implements OutputFormatterInterface
if ($configuration->shouldShowDiffs()) {
$this->reportFileDiffs($processResult->getFileDiffs());
}
$this->reportErrors($processResult->getErrors());
$this->reportErrors($errors);
if ($errors !== []) {
return;
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'd41685daa403a71dd3cd78fce5205a2a3048cba4';
public const PACKAGE_VERSION = '9217e0da232258fecb049c6a08d165ebe70aa36b';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-07-15 02:47:22';
public const RELEASE_DATE = '2023-07-14 20:03:51';
/**
* @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 ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696::getLoader();
return ComposerAutoloaderInit3839209d140a2de4719468db39400ec4::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696
class ComposerAutoloaderInit3839209d140a2de4719468db39400ec4
{
private static $loader;
@ -22,17 +22,17 @@ class ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit3839209d140a2de4719468db39400ec4', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit3839209d140a2de4719468db39400ec4', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit3839209d140a2de4719468db39400ec4::getInitializer($loader));
$loader->setClassMapAuthoritative(true);
$loader->register(true);
$filesToLoad = \Composer\Autoload\ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInit3839209d140a2de4719468db39400ec4::$files;
$requireFile = \Closure::bind(static function ($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 ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696
class ComposerStaticInit3839209d140a2de4719468db39400ec4
{
public static $files = array (
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
@ -3028,9 +3028,9 @@ class ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit3839209d140a2de4719468db39400ec4::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit3839209d140a2de4719468db39400ec4::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit3839209d140a2de4719468db39400ec4::$classMap;
}, null, ClassLoader::class);
}