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

22 lines
300 B
PHP
Raw Normal View History

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