-
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathDocBlockUpdater.php
More file actions
86 lines (69 loc) · 2.58 KB
/
DocBlockUpdater.php
File metadata and controls
86 lines (69 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
declare(strict_types=1);
namespace Rector\Comments\NodeDocBlock;
use PhpParser\Comment;
use PhpParser\Comment\Doc;
use PhpParser\Node;
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo;
use Rector\BetterPhpDocParser\Printer\PhpDocInfoPrinter;
use Rector\NodeTypeResolver\Node\AttributeKey;
final readonly class DocBlockUpdater
{
public function __construct(
private PhpDocInfoPrinter $phpDocInfoPrinter
) {
}
public function updateRefactoredNodeWithPhpDocInfo(Node $node): void
{
// nothing to change? don't save it
$phpDocInfo = $node->getAttribute(AttributeKey::PHP_DOC_INFO);
if (! $phpDocInfo instanceof PhpDocInfo) {
return;
}
$phpDocNode = $phpDocInfo->getPhpDocNode();
if ($phpDocNode->children === []) {
$this->setCommentsAttribute($node);
return;
}
$printedPhpDoc = $this->printPhpDocInfoToString($phpDocInfo);
$node->setDocComment(new Doc($printedPhpDoc));
if ($printedPhpDoc === '') {
$this->clearEmptyDoc($node);
}
}
private function setCommentsAttribute(Node $node): void
{
$docComment = $node->getDocComment();
$docCommentText = $docComment instanceof Doc ? $docComment->getText() : null;
$comments = array_filter(
$node->getComments(),
static function (Comment $comment) use ($docCommentText): bool {
if (! $comment instanceof Doc) {
return true;
}
// remove only the docblock that belongs to the node itself;
// keep other preceding docblocks (possible with multiple @var docblocks before a statement)
if ($docCommentText !== null && $comment->getText() === $docCommentText) {
return false;
}
return true;
}
);
$node->setAttribute(AttributeKey::COMMENTS, array_values($comments));
}
private function clearEmptyDoc(Node $node): void
{
$comments = array_filter(
$node->getComments(),
static fn (Comment $comment): bool => ! $comment instanceof Doc || $comment->getText() !== ''
);
$node->setAttribute(AttributeKey::COMMENTS, array_values($comments));
}
private function printPhpDocInfoToString(PhpDocInfo $phpDocInfo): string
{
if ($phpDocInfo->isNewNode()) {
return $this->phpDocInfoPrinter->printNew($phpDocInfo);
}
return $this->phpDocInfoPrinter->printFormatPreserving($phpDocInfo);
}
}