Updated Rector to commit d541d1a77e5e140bf12d4b71c9c9f98a3852a366

d541d1a77e [Doc] Fix documentation code example of RemoveTypedPropertyDeadInstanceOfRector (#4168)
This commit is contained in:
Tomas Votruba 2023-06-11 00:39:52 +00:00
parent c761279626
commit 01557664e6
6 changed files with 15 additions and 15 deletions

View File

@ -2900,7 +2900,7 @@ Remove dead instanceof check on type hinted property
{
private $someObject;
public function __construct($someObject)
public function __construct(SomeObject $someObject)
{
$this->someObject = $someObject;
}

View File

@ -57,7 +57,7 @@ final class SomeClass
{
private $someObject;
public function __construct($someObject)
public function __construct(SomeObject $someObject)
{
$this->someObject = $someObject;
}
@ -77,7 +77,7 @@ final class SomeClass
{
private $someObject;
public function __construct($someObject)
public function __construct(SomeObject $someObject)
{
$this->someObject = $someObject;
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '165376fce4e15d628f1fb08f201ef9758d1ef94f';
public const PACKAGE_VERSION = 'd541d1a77e5e140bf12d4b71c9c9f98a3852a366';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-06-11 00:31:17';
public const RELEASE_DATE = '2023-06-11 00:36:07';
/**
* @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 ComposerAutoloaderInit99c4fd1e8fbbae537a8226aea5a0f825::getLoader();
return ComposerAutoloaderInitd3d078f7b7ac5bab00694b4144be9d9b::getLoader();

View File

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