Updated Rector to commit d22741edaf63d488b39f7754353b0ea8cc454836

d22741edaf [TypeDeclaration] Fix missing change type to DateTimeInterface on MergeDateTimePropertyTypeDeclarationRector (#5329)
This commit is contained in:
Tomas Votruba 2023-12-05 21:03:16 +00:00
parent 13aada9fdc
commit e86b6d37a6
4 changed files with 8 additions and 7 deletions

View File

@ -89,6 +89,7 @@ CODE_SAMPLE
if ($varType instanceof FullyQualifiedObjectType && $varType->getClassName() === 'DateTimeInterface') {
$phpDocInfo->removeByType(VarTagValueNode::class);
$this->docBlockUpdater->updateRefactoredNodeWithPhpDocInfo($property);
$property->type = new FullyQualified('DateTimeInterface');
$hasChanged = \true;
}
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'b1a50d4c785b9fc1498bcd843e58635350e10114';
public const PACKAGE_VERSION = 'd22741edaf63d488b39f7754353b0ea8cc454836';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-12-05 14:58:53';
public const RELEASE_DATE = '2023-12-06 04:00:59';
/**
* @var int
*/

View File

@ -504,8 +504,8 @@
},
{
"name": "illuminate\/container",
"version": "v10.34.2",
"version_normalized": "10.34.2.0",
"version": "v10.35.0",
"version_normalized": "10.35.0.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/illuminate\/container.git",
@ -561,8 +561,8 @@
},
{
"name": "illuminate\/contracts",
"version": "v10.34.2",
"version_normalized": "10.34.2.0",
"version": "v10.35.0",
"version_normalized": "10.35.0.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/illuminate\/contracts.git",

File diff suppressed because one or more lines are too long