Skip to content

Commit

Permalink
Updated Rector to commit 1f6cea3
Browse files Browse the repository at this point in the history
rectorphp/rector-src@1f6cea3 [Php80] Handle trailing comma on AnnotationToAttributeRector on Doctrine JoinColumn (#2766)
  • Loading branch information
TomasVotruba committed Aug 15, 2022
1 parent d771949 commit 3b5a718
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ private function resolveAnnotationValues(BetterTokenIterator $tokenIterator) : a
if (\is_array($nestedValues)) {
$values = \array_merge($values, $nestedValues);
} else {
if ($tokenIterator->isCurrentTokenType(Lexer::TOKEN_END)) {
break;
}
$values[] = $nestedValues;
}
}
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 = '2977d091b2a7dfcddf855c376534a835876e3ffd';
public const PACKAGE_VERSION = '1f6cea323ef7a3125c8fe56958e71ad4dd9944c7';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2022-08-15 20:31:16';
public const RELEASE_DATE = '2022-08-15 20:31: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 @@ -9,4 +9,4 @@

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

return ComposerAutoloaderInit30e12c774bc11b584246cf359fb708c1::getLoader();
return ComposerAutoloaderInitff69ad3dd9c3119a43b6dcd529d4ff78::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 ComposerAutoloaderInit30e12c774bc11b584246cf359fb708c1
class ComposerAutoloaderInitff69ad3dd9c3119a43b6dcd529d4ff78
{
private static $loader;

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

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

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

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

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

return $loader;
Expand All @@ -46,7 +46,7 @@ public static function getLoader()
* @param string $file
* @return void
*/
function composerRequire30e12c774bc11b584246cf359fb708c1($fileIdentifier, $file)
function composerRequireff69ad3dd9c3119a43b6dcd529d4ff78($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 ComposerStaticInit30e12c774bc11b584246cf359fb708c1
class ComposerStaticInitff69ad3dd9c3119a43b6dcd529d4ff78
{
public static $files = array (
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
Expand Down Expand Up @@ -3250,9 +3250,9 @@ class ComposerStaticInit30e12c774bc11b584246cf359fb708c1
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit30e12c774bc11b584246cf359fb708c1::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInitff69ad3dd9c3119a43b6dcd529d4ff78::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitff69ad3dd9c3119a43b6dcd529d4ff78::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitff69ad3dd9c3119a43b6dcd529d4ff78::$classMap;

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

0 comments on commit 3b5a718

Please sign in to comment.