mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 22:08:00 +01:00
Updated Rector to commit 6046c24443d9bfdfe5bf8638fb82e03703ee1df8
6046c24443
[CodingStyle] Return null on no change on StrictArraySearchRector (#5528)
This commit is contained in:
parent
17078d56a8
commit
97c24103e6
@ -34,7 +34,8 @@ final class StrictArraySearchRector extends AbstractRector
|
||||
}
|
||||
if (\count($node->args) === 2) {
|
||||
$node->args[2] = $this->nodeFactory->createArg($this->nodeFactory->createTrue());
|
||||
return $node;
|
||||
}
|
||||
return $node;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
@ -19,12 +19,12 @@ final class VersionResolver
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const PACKAGE_VERSION = '2f041dc9beacc2f150344f4c169cc14d4c4991d9';
|
||||
public const PACKAGE_VERSION = '6046c24443d9bfdfe5bf8638fb82e03703ee1df8';
|
||||
/**
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const RELEASE_DATE = '2024-01-30 21:41:26';
|
||||
public const RELEASE_DATE = '2024-01-31 03:46:18';
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
|
2
vendor/scoper-autoload.php
vendored
2
vendor/scoper-autoload.php
vendored
@ -14,7 +14,7 @@ $loader = (static function () {
|
||||
// Restore the backup and ensure the excluded files are properly marked as loaded
|
||||
$GLOBALS['__composer_autoload_files'] = \array_merge(
|
||||
$existingComposerAutoloadFiles,
|
||||
\array_fill_keys(['0e6d7bf4a5811bfa5cf40c5ccd6fae6a', '5928a00fa978807cf85d90ec3f4b0147'], true)
|
||||
\array_fill_keys(['5928a00fa978807cf85d90ec3f4b0147', '0e6d7bf4a5811bfa5cf40c5ccd6fae6a'], true)
|
||||
);
|
||||
|
||||
return $loader;
|
||||
|
Loading…
x
Reference in New Issue
Block a user