2011-09-08 15:54:49 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DDC753;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity()
|
|
|
|
*/
|
|
|
|
class DDC753EntityWithDefaultCustomRepository
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2011-12-19 22:56:19 +01:00
|
|
|
* @Id
|
|
|
|
* @Column(type="integer")
|
2011-09-08 15:54:49 -03:00
|
|
|
* @GeneratedValue
|
|
|
|
*/
|
|
|
|
protected $id;
|
|
|
|
|
|
|
|
/** @column(type="string") */
|
|
|
|
protected $name;
|
|
|
|
|
2016-10-26 13:24:33 -03:00
|
|
|
}
|