Updated Rector to commit 4c76526033e105cbd3de89368b00c0de7ae535aa

4c76526033 Remove sebastian/diff 5.0 as 4.0.4 requirement (#3339)
This commit is contained in:
Tomas Votruba 2023-02-06 09:25:47 +00:00
parent dcf76eb71d
commit 6551c3feef
6 changed files with 15 additions and 15 deletions

View File

@ -2050,7 +2050,7 @@ Change data provider in PHPUnit test case to newline per item
// ...
}
public function provideData(): array
public static function provideData(): array
{
- return [['content', 8], ['content123', 11]];
+ return [
@ -9132,7 +9132,7 @@ Adds param type declaration based on PHPUnit provider return type declaration
{
}
public function provideData()
public static function provideData()
{
yield ['name'];
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '60d6bf0672c29da289477ad1d3310b79818bd820';
public const PACKAGE_VERSION = '4c76526033e105cbd3de89368b00c0de7ae535aa';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-02-05 12:14:09';
public const RELEASE_DATE = '2023-02-06 09:21:27';
/**
* @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 ComposerAutoloaderInit26049586aa68ae32033743aad5b50429::getLoader();
return ComposerAutoloaderInit702336066e466630ff1c19f40da2ce89::getLoader();

View File

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

File diff suppressed because one or more lines are too long