rector/packages-tests/BetterPhpDocParser/PhpDocInfo/PhpDocInfoPrinter/Source/Doctrine/IndexInTable.php

21 lines
340 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Tests\BetterPhpDocParser\PhpDocInfo\PhpDocInfoPrinter\Source\Doctrine;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(
* name="building",
* indexes={
* @ORM\Index(name="isDemoBuilding", columns={"is_demo_building"})
* }
* )
*/
final class IndexInTable
{
}