Updated Rector to commit 6e9310b65c1139a8102ed7aab73b658ba5f97c83

6e9310b65c [automated] Apply Coding Standard (#3910)
This commit is contained in:
Tomas Votruba 2023-05-21 00:33:57 +00:00
parent dde8a00cee
commit d41cd2c891
5 changed files with 18 additions and 18 deletions

View File

@ -3,16 +3,16 @@
declare (strict_types=1);
namespace Rector\TypeDeclaration\Rector\ClassMethod;
use PhpParser\Node\Expr\BinaryOp\BooleanOr;
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
use PhpParser\Node\Expr\BinaryOp\Identical;
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
use PhpParser\Node\Expr\BinaryOp\Equal;
use PhpParser\Node\Expr\BinaryOp\NotEqual;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
use PhpParser\Node\Expr\BinaryOp\BooleanOr;
use PhpParser\Node\Expr\BinaryOp\Equal;
use PhpParser\Node\Expr\BinaryOp\Greater;
use PhpParser\Node\Expr\BinaryOp\GreaterOrEqual;
use PhpParser\Node\Expr\BinaryOp\Identical;
use PhpParser\Node\Expr\BinaryOp\NotEqual;
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
use PhpParser\Node\Expr\BinaryOp\Smaller;
use PhpParser\Node\Expr\BinaryOp\SmallerOrEqual;
use PhpParser\Node\Expr\FuncCall;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'b68e7e6f3672aa35776dd9a2ff829bf735d2a1f5';
public const PACKAGE_VERSION = '6e9310b65c1139a8102ed7aab73b658ba5f97c83';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-05-21 00:28:10';
public const RELEASE_DATE = '2023-05-21 00:29:44';
/**
* @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 ComposerAutoloaderInite06646275d8042117ef8196bf4ab15e9::getLoader();
return ComposerAutoloaderInit56407fdb83096e9cd02a72d22bd7a5a5::getLoader();

View File

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