Updated Rector to commit 6046c24443d9bfdfe5bf8638fb82e03703ee1df8

6046c24443 [CodingStyle] Return null on no change on StrictArraySearchRector (#5528)
This commit is contained in:
Tomas Votruba 2024-01-30 20:48:28 +00:00
parent 17078d56a8
commit 97c24103e6
3 changed files with 5 additions and 4 deletions

View File

@ -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;
}
}

View File

@ -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
*/

View File

@ -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;