Updated Rector to commit 56195b368e89f7fc7d92fe96703286f9c4985f18

56195b368e Fix external patch path (#4677)
This commit is contained in:
Tomas Votruba 2023-08-06 15:47:57 +00:00
parent 6f8ff0f9d5
commit da7cbac54d
18 changed files with 28 additions and 28 deletions

View File

@ -16,7 +16,7 @@ about: Report errors and problems
## Minimal PHP Code Causing Issue
<!-- Reproduce the issue using https://getrector.org/demo/ and post the URL here. -->
<!-- Reproduce the issue using https://getrector.com/demo/ and post the URL here. -->
## Expected Behaviour

View File

@ -72,7 +72,7 @@ vendor/bin/rector process src
## Documentation
* Find [full documentation here](https://getrector.org/documentation/).
* Find [full documentation here](https://getrector.com/documentation/).
* [Explore Rector Rules](/docs/rector_rules_overview.md)
<br>
@ -106,9 +106,9 @@ Among there projects belong:
## Hire us to get Job Done :muscle:
Rector is a tool that [we develop](https://getrector.org/) and share for free, so anyone can automate their refactoring. But not everyone has dozens of hours to understand complexity of abstract-syntax-tree in their own time. **That's why we provide commercial support - to save your time**.
Rector is a tool that [we develop](https://getrector.com/) and share for free, so anyone can automate their refactoring. But not everyone has dozens of hours to understand complexity of abstract-syntax-tree in their own time. **That's why we provide commercial support - to save your time**.
Would you like to apply Rector on your code base but don't have time for the struggle with your project? [Hire us](https://getrector.org/contact) to get there faster.
Would you like to apply Rector on your code base but don't have time for the struggle with your project? [Hire us](https://getrector.com/contact) to get there faster.
<br>

View File

@ -2,4 +2,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -3,4 +3,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -3,4 +3,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -3,4 +3,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -2,4 +2,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -2,4 +2,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -2,4 +2,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -2,4 +2,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -2,4 +2,4 @@
This page was moved to new documentation.
You can find it here: https://getrector.org/documentation/
You can find it here: https://getrector.com/documentation/

View File

@ -104,7 +104,7 @@ final class RectorConfig extends ContainerConfigurator
Assert::classExists($rectorClass);
Assert::isAOf($rectorClass, RectorInterface::class);
Assert::isAOf($rectorClass, ConfigurableRectorInterface::class);
// decorate with value object inliner so Symfony understands, see https://getrector.org/blog/2020/09/07/how-to-inline-value-object-in-symfony-php-config
// decorate with value object inliner so Symfony understands, see https://getrector.com/blog/2020/09/07/how-to-inline-value-object-in-symfony-php-config
\array_walk_recursive($configuration, static function (&$value) {
if (\is_object($value)) {
$value = ValueObjectInliner::inline($value);

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '2ffa009e08d06c7522a1f3b066f90e8edbee8210';
public const PACKAGE_VERSION = '56195b368e89f7fc7d92fe96703286f9c4985f18';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-08-06 16:10:36';
public const RELEASE_DATE = '2023-08-06 16:44:19';
/**
* @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 ComposerAutoloaderInit960639b9b816f607e946e8b0525ee335::getLoader();
return ComposerAutoloaderInit828c9363fa9c2a209acd36e348c2ba00::getLoader();

View File

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

View File

@ -532,7 +532,7 @@
"dev-master": "10.x-dev"
},
"patches_applied": [
"patches\/illuminate-container-container-php.patch"
"https:\/\/raw.githubusercontent.com\/rectorphp\/vendor-patches\/main\/patches\/\/illuminate-container-container-php.patch"
]
},
"installation-source": "dist",

View File

@ -2,6 +2,6 @@ This file was automatically generated by Composer Patches (https://github.com/cw
Patches applied to this directory:
0
Source: patches/illuminate-container-container-php.patch
Source: https://raw.githubusercontent.com/rectorphp/vendor-patches/main/patches//illuminate-container-container-php.patch