Updated Rector to commit 7433ffeb07507632659635152b35af66320d1e07

7433ffeb07 [Printer] Reduce regex for end with \n detection on BetterStandardPrinter (#4957)
This commit is contained in:
Tomas Votruba 2023-09-10 01:02:05 +00:00
parent f73bcd4ef8
commit 5b0f55fa4b
5 changed files with 13 additions and 19 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'c97e4ffb0534d388b5f51508491916f54d3f342a';
public const PACKAGE_VERSION = '7433ffeb07507632659635152b35af66320d1e07';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-09-09 22:47:06';
public const RELEASE_DATE = '2023-09-10 07:58:55';
/**
* @var int
*/

View File

@ -31,7 +31,6 @@ use Rector\Comments\NodeDocBlock\DocBlockUpdater;
use Rector\Core\Configuration\Option;
use Rector\Core\Configuration\Parameter\SimpleParameterProvider;
use Rector\Core\PhpParser\Node\CustomNode\FileWithoutNamespace;
use Rector\Core\Util\StringUtils;
use Rector\NodeTypeResolver\Node\AttributeKey;
/**
* @see \Rector\Core\Tests\PhpParser\Printer\BetterStandardPrinterTest
@ -45,11 +44,6 @@ final class BetterStandardPrinter extends Standard
* @var \Rector\Comments\NodeDocBlock\DocBlockUpdater
*/
private $docBlockUpdater;
/**
* @var string
* @see https://regex101.com/r/jUFizd/1
*/
private const NEWLINE_END_REGEX = "#\n\$#";
/**
* @var string
* @see https://regex101.com/r/F5x783/1
@ -92,7 +86,7 @@ final class BetterStandardPrinter extends Standard
$newStmts = $this->resolveNewStmts($stmts);
$content = parent::printFormatPreserving($newStmts, $origStmts, $origTokens);
// add new line in case of added stmts
if (\count($newStmts) !== \count($origStmts) && !StringUtils::isMatch($content, self::NEWLINE_END_REGEX)) {
if (\count($newStmts) !== \count($origStmts) && \substr_compare($content, "\n", -\strlen("\n")) !== 0) {
$content .= $this->nl;
}
return $content;

2
vendor/autoload.php vendored
View File

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

View File

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