1
0
mirror of synced 2025-02-03 13:59:27 +03:00
doctrine2/tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithCustomRepository.php

22 lines
341 B
PHP
Raw Normal View History

2011-09-08 15:54:49 -03:00
<?php
namespace Doctrine\Tests\Models\DDC753;
/**
* @Entity(repositoryClass = "Doctrine\Tests\Models\DDC753\DDC753CustomRepository")
*/
class DDC753EntityWithCustomRepository
{
/**
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;
}