File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-doctrine/src/Rector/Property/MakeEntityDateTimePropertyDateTimeInterfaceRector.php
Back
<?php declare (strict_types=1); namespace Rector\Doctrine\Rector\Property; use PhpParser\Node; use PhpParser\Node\Stmt\Property; use PHPStan\Type\ObjectType; use PHPStan\Type\TypeCombinator; use PHPStan\Type\UnionType; use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo; use Rector\Core\Rector\AbstractRector; use Rector\Doctrine\NodeManipulator\PropertyTypeManipulator; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @see related to maker bundle https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html * * @see \Rector\Doctrine\Tests\Rector\Property\MakeEntityDateTimePropertyDateTimeInterfaceRector\MakeEntityDateTimePropertyDateTimeInterfaceRectorTest */ final class MakeEntityDateTimePropertyDateTimeInterfaceRector extends AbstractRector { /** * @readonly * @var \Rector\Doctrine\NodeManipulator\PropertyTypeManipulator */ private $propertyTypeManipulator; public function __construct(PropertyTypeManipulator $propertyTypeManipulator) { $this->propertyTypeManipulator = $propertyTypeManipulator; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Make maker bundle generate DateTime property accept DateTimeInterface too', [new CodeSample(<<<'CODE_SAMPLE' use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity() */ class User { /** * @var DateTime|null */ private $bornAt; public function setBornAt(DateTimeInterface $bornAt) { $this->bornAt = $bornAt; } } CODE_SAMPLE , <<<'CODE_SAMPLE' use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity() */ class User { /** * @var DateTimeInterface|null */ private $bornAt; public function setBornAt(DateTimeInterface $bornAt) { $this->bornAt = $bornAt; } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [Property::class]; } /** * @param Property $node */ public function refactor(Node $node) : ?Node { $phpDocInfo = $this->phpDocInfoFactory->createFromNode($node); if ($phpDocInfo instanceof PhpDocInfo) { $varType = $phpDocInfo->getVarType(); if ($varType instanceof UnionType) { $varType = TypeCombinator::removeNull($varType); } if (!$varType->equals(new ObjectType('DateTime'))) { return null; } $this->propertyTypeManipulator->changePropertyType($node, 'DateTime', 'DateTimeInterface'); return $node; } return null; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings