Updated Rector to commit dd02659ec90240c9452ccb86e48fb53879572935

dd02659ec9 [CodeQuality] Skip surplus open square bracket on SimplifyRegexPatternRector (#5494)
This commit is contained in:
Tomas Votruba 2024-01-23 15:52:42 +00:00
parent 678e34b775
commit aa518bb95d
4 changed files with 11 additions and 7 deletions

View File

@ -73,6 +73,10 @@ CODE_SAMPLE
if ($originalValue === $simplifiedValue) {
continue;
}
$countSqureOpenBracket = \substr_count($simplifiedValue, '[');
if ($countSqureOpenBracket % 2 === 1) {
continue;
}
$node->value = $simplifiedValue;
return $node;
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'bcce8e3d240861cdb36cbf76b68672fa829f347d';
public const PACKAGE_VERSION = 'dd02659ec90240c9452ccb86e48fb53879572935';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-01-23 11:05:41';
public const RELEASE_DATE = '2024-01-23 22:50:30';
/**
* @var int
*/

View File

@ -504,8 +504,8 @@
},
{
"name": "illuminate\/container",
"version": "v10.41.0",
"version_normalized": "10.41.0.0",
"version": "v10.42.0",
"version_normalized": "10.42.0.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/illuminate\/container.git",
@ -561,8 +561,8 @@
},
{
"name": "illuminate\/contracts",
"version": "v10.41.0",
"version_normalized": "10.41.0.0",
"version": "v10.42.0",
"version_normalized": "10.42.0.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/illuminate\/contracts.git",

File diff suppressed because one or more lines are too long