mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
add @ORM\Table constant name test
This commit is contained in:
parent
6f2940baf6
commit
3a03f66ae9
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Rector\BetterPhpDocParser\Tests\PhpDocParser\TagValueNodeReprint\Fixture\DoctrineTable;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* @ORM\Table(name=ConstantTable::TABLE_NAME)
|
||||
*/
|
||||
class ConstantTable
|
||||
{
|
||||
const TABLE_NAME = 'some_table_name';
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user