golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/BetterPhpDocParser/PhpDoc
⬆️ Go Up
Upload
File/Folder
Size
Actions
ArrayItemNode.php
1.18 KB
Del
OK
DoctrineAnnotationTagValueNode.php
2.07 KB
Del
OK
SpacelessPhpDocTagNode.php
439 B
Del
OK
StringNode.php
960 B
Del
OK
Edit: SpacelessPhpDocTagNode.php
<?php declare (strict_types=1); namespace Rector\BetterPhpDocParser\PhpDoc; use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode; use Stringable; /** * Useful for annotation class based annotation, e.g. @ORM\Entity to prevent space * between the @ORM\Entity and (someContent) */ final class SpacelessPhpDocTagNode extends PhpDocTagNode { public function __toString() : string { return $this->name . $this->value; } }
Save