Updated Rector to commit 72f57a16cbc27099ca0d9a81d43063ebcca6b840

72f57a16cb [Strict] Fix warning configurable rector rules on BooleanInTernaryOperatorRuleFixerRector (#3237)
This commit is contained in:
Tomas Votruba 2022-12-22 14:21:31 +00:00
parent 67958340fd
commit 14c48f409f
5 changed files with 14 additions and 14 deletions

View File

@ -3,13 +3,13 @@
declare (strict_types=1);
namespace Rector\Strict\Rector;
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\Contract\Rector\AllowEmptyConfigurableRectorInterface;
use Rector\Core\Rector\AbstractRector;
use RectorPrefix202212\Webmozart\Assert\Assert;
/**
* @see \Rector\Tests\Strict\Rector\BooleanNot\BooleanInBooleanNotRuleFixerRector\BooleanInBooleanNotRuleFixerRectorTest
*/
abstract class AbstractFalsyScalarRuleFixerRector extends AbstractRector implements ConfigurableRectorInterface
abstract class AbstractFalsyScalarRuleFixerRector extends AbstractRector implements AllowEmptyConfigurableRectorInterface
{
/**
* @api

View File

@ -17,12 +17,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '7f8f9f818e7abf6e55a10648440d4079b4f5803f';
public const PACKAGE_VERSION = '72f57a16cbc27099ca0d9a81d43063ebcca6b840';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2022-12-22 12:31:19';
public const RELEASE_DATE = '2022-12-22 15:17:12';
/**
* @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 ComposerAutoloaderInit6e2562579b53b4d5b356013eb580354b::getLoader();
return ComposerAutoloaderInit35f9dadbc9a0bc871d3ac259e3969bbc::getLoader();

View File

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