13 lines
131 B
PHP
13 lines
131 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @entity
|
||
|
*/
|
||
|
class DoctrineOrmTestEntity
|
||
|
{
|
||
|
/**
|
||
|
* @column(type="integer")
|
||
|
* @id
|
||
|
*/
|
||
|
public $id;
|
||
|
}
|