rector/packages-tests/BetterPhpDocParser/PhpDocParser/TagValueNodeReprint/Fixture/DoctrineColumn/FromOfficialDocs.php

16 lines
349 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Tests\BetterPhpDocParser\PhpDocParser\TagValueNodeReprint\Fixture\DoctrineColumn;
use Doctrine\ORM\Mapping as ORM;
final class FromOfficialDocs
{
/**
* @ORM\Column(type="integer", name="login_count", nullable=false, columnDefinition="CHAR(2) NOT NULL")
*/
private $loginCount;
}