mirror of
https://github.com/rectorphp/rector.git
synced 2025-05-05 23:45:55 +02:00
Updated Rector to commit 8c623868b748427ce186a1b3b892a7bca9860483
8c623868b7
[automated] Apply Coding Standard (#4621)
This commit is contained in:
parent
e81ca74f2e
commit
3598a7608a
rules/TypeDeclaration/Rector/ClassMethod
src
Application
NodeManipulator
PhpParser/NodeFinder
vendor
@ -3,8 +3,8 @@
|
||||
declare (strict_types=1);
|
||||
namespace Rector\TypeDeclaration\Rector\ClassMethod;
|
||||
|
||||
use PhpParser\Node\Name;
|
||||
use PhpParser\Node;
|
||||
use PhpParser\Node\Name;
|
||||
use PhpParser\Node\Stmt\Class_;
|
||||
use PhpParser\Node\Stmt\ClassMethod;
|
||||
use Rector\Core\PhpParser\NodeFinder\LocalMethodCallFinder;
|
||||
|
@ -19,12 +19,12 @@ final class VersionResolver
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const PACKAGE_VERSION = '49f24735886a9aa8025b12a4cf196f81b6ea3272';
|
||||
public const PACKAGE_VERSION = '8c623868b748427ce186a1b3b892a7bca9860483';
|
||||
/**
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const RELEASE_DATE = '2023-07-30 00:27:57';
|
||||
public const RELEASE_DATE = '2023-07-30 00:28:40';
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
|
@ -3,7 +3,6 @@
|
||||
declare (strict_types=1);
|
||||
namespace Rector\Core\NodeManipulator;
|
||||
|
||||
use PHPStan\Analyser\Scope;
|
||||
use RectorPrefix202307\Doctrine\ORM\Mapping\Table;
|
||||
use PhpParser\Node;
|
||||
use PhpParser\Node\Expr\PropertyFetch;
|
||||
@ -13,6 +12,7 @@ use PhpParser\Node\Stmt\Class_;
|
||||
use PhpParser\Node\Stmt\ClassMethod;
|
||||
use PhpParser\Node\Stmt\Property;
|
||||
use PhpParser\Node\Stmt\Trait_;
|
||||
use PHPStan\Analyser\Scope;
|
||||
use PHPStan\Reflection\ClassReflection;
|
||||
use PHPStan\Type\ObjectType;
|
||||
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo;
|
||||
|
@ -3,7 +3,6 @@
|
||||
declare (strict_types=1);
|
||||
namespace Rector\Core\PhpParser\NodeFinder;
|
||||
|
||||
use PHPStan\Type\StaticType;
|
||||
use PhpParser\Node;
|
||||
use PhpParser\Node\Expr;
|
||||
use PhpParser\Node\Expr\ArrayDimFetch;
|
||||
@ -19,6 +18,7 @@ use PhpParser\Node\Stmt\Property;
|
||||
use PhpParser\Node\Stmt\Trait_;
|
||||
use PHPStan\Analyser\Scope;
|
||||
use PHPStan\Reflection\ClassReflection;
|
||||
use PHPStan\Type\StaticType;
|
||||
use PHPStan\Type\TypeWithClassName;
|
||||
use Rector\Core\NodeAnalyzer\PropertyFetchAnalyzer;
|
||||
use Rector\Core\PhpParser\AstResolver;
|
||||
|
2
vendor/autoload.php
vendored
2
vendor/autoload.php
vendored
@ -22,4 +22,4 @@ if (PHP_VERSION_ID < 50600) {
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInitb4aee6e8336bb98297e30a7ab247a210::getLoader();
|
||||
return ComposerAutoloaderInitdfa948fbfb833ea04df2eda35fb17026::getLoader();
|
||||
|
10
vendor/composer/autoload_real.php
vendored
10
vendor/composer/autoload_real.php
vendored
@ -2,7 +2,7 @@
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitb4aee6e8336bb98297e30a7ab247a210
|
||||
class ComposerAutoloaderInitdfa948fbfb833ea04df2eda35fb17026
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
@ -22,17 +22,17 @@ class ComposerAutoloaderInitb4aee6e8336bb98297e30a7ab247a210
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitb4aee6e8336bb98297e30a7ab247a210', 'loadClassLoader'), true, true);
|
||||
spl_autoload_register(array('ComposerAutoloaderInitdfa948fbfb833ea04df2eda35fb17026', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitb4aee6e8336bb98297e30a7ab247a210', 'loadClassLoader'));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitdfa948fbfb833ea04df2eda35fb17026', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210::getInitializer($loader));
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitdfa948fbfb833ea04df2eda35fb17026::getInitializer($loader));
|
||||
|
||||
$loader->setClassMapAuthoritative(true);
|
||||
$loader->register(true);
|
||||
|
||||
$filesToLoad = \Composer\Autoload\ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210::$files;
|
||||
$filesToLoad = \Composer\Autoload\ComposerStaticInitdfa948fbfb833ea04df2eda35fb17026::$files;
|
||||
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||
|
8
vendor/composer/autoload_static.php
vendored
8
vendor/composer/autoload_static.php
vendored
@ -4,7 +4,7 @@
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210
|
||||
class ComposerStaticInitdfa948fbfb833ea04df2eda35fb17026
|
||||
{
|
||||
public static $files = array (
|
||||
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
|
||||
@ -3023,9 +3023,9 @@ class ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitb4aee6e8336bb98297e30a7ab247a210::$classMap;
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitdfa948fbfb833ea04df2eda35fb17026::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitdfa948fbfb833ea04df2eda35fb17026::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitdfa948fbfb833ea04df2eda35fb17026::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user