Skip to content

Commit

Permalink
Updated Rector to commit 3ca9d0d7c27b9c538cba410f11c1f084c47de59c
Browse files Browse the repository at this point in the history
rectorphp/rector-src@3ca9d0d  [AutoImport] Fix missing @ in deep annotation auto import  (#6386)
  • Loading branch information
TomasVotruba committed Oct 17, 2024
1 parent 5864fb0 commit ca3b59b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'cdeea08b786337dc6f537c9cac0ac9dc80a2da8d';
public const PACKAGE_VERSION = '3ca9d0d7c27b9c538cba410f11c1f084c47de59c';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-10-16 11:52:45';
public const RELEASE_DATE = '2024-10-17 21:53:46';
/**
* @var int
*/
Expand Down
2 changes: 1 addition & 1 deletion src/BetterPhpDocParser/PhpDoc/ArrayItemNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __toString() : string
$value .= $singleValue;
}
} elseif ($this->value instanceof \Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode) {
$value .= $this->value->identifierTypeNode . $this->value;
$value .= '@' . \ltrim((string) $this->value->identifierTypeNode, '@') . $this->value;
} else {
$value .= $this->value;
}
Expand Down
8 changes: 4 additions & 4 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -512,8 +512,8 @@
},
{
"name": "illuminate\/container",
"version": "v11.28.0",
"version_normalized": "11.28.0.0",
"version": "v11.28.1",
"version_normalized": "11.28.1.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/illuminate\/container.git",
Expand Down Expand Up @@ -569,8 +569,8 @@
},
{
"name": "illuminate\/contracts",
"version": "v11.28.0",
"version_normalized": "11.28.0.0",
"version": "v11.28.1",
"version_normalized": "11.28.1.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/illuminate\/contracts.git",
Expand Down
Loading

0 comments on commit ca3b59b

Please sign in to comment.