1
0
mirror of synced 2025-02-03 22:09:26 +03:00
doctrine2/tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithDefaultCustomRepository.php

22 lines
277 B
PHP
Raw Normal View History

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;
}