Skip to content

Commit

Permalink
Updated Rector to commit 9217e0da232258fecb049c6a08d165ebe70aa36b
Browse files Browse the repository at this point in the history
rectorphp/rector-src@9217e0d [ChangesReporting] Reuse defined errors vairable on ConsoleOutputFormatter (#4517)
  • Loading branch information
TomasVotruba committed Jul 14, 2023
1 parent 3da291e commit d67f0e4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function report(ProcessResult $processResult, Configuration $configuratio
if ($configuration->shouldShowDiffs()) {
$this->reportFileDiffs($processResult->getFileDiffs());
}
$this->reportErrors($processResult->getErrors());
$this->reportErrors($errors);
if ($errors !== []) {
return;
}
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 = '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
*/
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 ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696::getLoader();
return ComposerAutoloaderInit3839209d140a2de4719468db39400ec4::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 ComposerAutoloaderInit8fa5aea97cf6c19bc243f28737c13696
class ComposerAutoloaderInit3839209d140a2de4719468db39400ec4
{
private static $loader;

Expand All @@ -22,17 +22,17 @@ public static function getLoader()
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;
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 ComposerStaticInit8fa5aea97cf6c19bc243f28737c13696
class ComposerStaticInit3839209d140a2de4719468db39400ec4
{
public static $files = array (
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit d67f0e4

Please sign in to comment.