File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-doctrine/src/NodeManipulator/DoctrineItemDefaultValueManipulator.php
Back
<?php declare (strict_types=1); namespace Rector\Doctrine\NodeManipulator; use PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprFalseNode; use PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprIntegerNode; use PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprTrueNode; use Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode; use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo; final class DoctrineItemDefaultValueManipulator { /** * @param string|bool|int $defaultValue */ public function remove(PhpDocInfo $phpDocInfo, DoctrineAnnotationTagValueNode $doctrineAnnotationTagValueNode, string $item, $defaultValue) : void { if (!$this->hasItemWithDefaultValue($doctrineAnnotationTagValueNode, $item, $defaultValue)) { return; } $doctrineAnnotationTagValueNode->removeValue($item); $phpDocInfo->markAsChanged(); } /** * @param string|bool|int $defaultValue */ private function hasItemWithDefaultValue(DoctrineAnnotationTagValueNode $doctrineAnnotationTagValueNode, string $itemKey, $defaultValue) : bool { $currentValue = $doctrineAnnotationTagValueNode->getValueWithoutQuotes($itemKey); if ($currentValue === null) { return \false; } if ($defaultValue === \false) { return $currentValue instanceof ConstExprFalseNode; } if ($defaultValue === \true) { return $currentValue instanceof ConstExprTrueNode; } if (\is_int($defaultValue) && $currentValue instanceof ConstExprIntegerNode) { $currentValue = (int) $currentValue->value; } return $currentValue === $defaultValue; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings