Updated Rector to commit 07ab6051dff0262c2ee6ea060056bf9e56186ada

07ab6051df [PHPStan] Clean up ignore errors for narrow public (#2697)
This commit is contained in:
Tomas Votruba 2022-07-21 09:19:12 +00:00
parent 951e340c94
commit 2f66cf1f32
6 changed files with 18 additions and 14 deletions

View File

@ -18,6 +18,7 @@ final class BinaryOpTreeRootLocator
*
* This is useful in conjunction with BinaryOpConditionsCollector, which expects such tree.
*
* @api
* @param class-string<BinaryOp> $binaryOpClass
*/
public function findOperationRoot(Expr $expr, string $binaryOpClass) : Expr

View File

@ -17,12 +17,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '49a8343323c6cc5c40e1ca0ef4b3e6c418848ea7';
public const PACKAGE_VERSION = '07ab6051dff0262c2ee6ea060056bf9e56186ada';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2022-07-20 13:32:05';
public const RELEASE_DATE = '2022-07-21 11:13:59';
/**
* @var int
*/

View File

@ -171,6 +171,9 @@ final class NodeFactory
$variable = new Variable($propertyName);
return $this->createPropertyAssignmentWithExpr($propertyName, $variable);
}
/**
* @api
*/
public function createPropertyAssignmentWithExpr(string $propertyName, Expr $expr) : Assign
{
$propertyFetch = $this->createPropertyFetch(self::THIS, $propertyName);

2
vendor/autoload.php vendored
View File

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

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInitc36b05a84adcfc3a6c69df503ed4c31e
class ComposerAutoloaderInit01861a603f40933ad581da67cf5e2b16
{
private static $loader;
@ -22,19 +22,19 @@ class ComposerAutoloaderInitc36b05a84adcfc3a6c69df503ed4c31e
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInitc36b05a84adcfc3a6c69df503ed4c31e', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit01861a603f40933ad581da67cf5e2b16', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInitc36b05a84adcfc3a6c69df503ed4c31e', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit01861a603f40933ad581da67cf5e2b16', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit01861a603f40933ad581da67cf5e2b16::getInitializer($loader));
$loader->setClassMapAuthoritative(true);
$loader->register(true);
$includeFiles = \Composer\Autoload\ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e::$files;
$includeFiles = \Composer\Autoload\ComposerStaticInit01861a603f40933ad581da67cf5e2b16::$files;
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequirec36b05a84adcfc3a6c69df503ed4c31e($fileIdentifier, $file);
composerRequire01861a603f40933ad581da67cf5e2b16($fileIdentifier, $file);
}
return $loader;
@ -46,7 +46,7 @@ class ComposerAutoloaderInitc36b05a84adcfc3a6c69df503ed4c31e
* @param string $file
* @return void
*/
function composerRequirec36b05a84adcfc3a6c69df503ed4c31e($fileIdentifier, $file)
function composerRequire01861a603f40933ad581da67cf5e2b16($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 ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e
class ComposerStaticInit01861a603f40933ad581da67cf5e2b16
{
public static $files = array (
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
@ -3402,9 +3402,9 @@ class ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitc36b05a84adcfc3a6c69df503ed4c31e::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit01861a603f40933ad581da67cf5e2b16::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit01861a603f40933ad581da67cf5e2b16::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit01861a603f40933ad581da67cf5e2b16::$classMap;
}, null, ClassLoader::class);
}