1
0
mirror of synced 2025-01-19 23:11:41 +03:00

24 lines
356 B
PHP
Raw Normal View History

2014-09-06 18:14:16 +03:00
<?php
2014-09-06 18:29:14 +03:00
namespace Doctrine\Tests\Models\DDC3231;
2014-09-06 18:14:16 +03:00
/**
2014-09-06 18:29:14 +03:00
* @Entity(repositoryClass="DDC3231User2Repository")
* @Table(name="users2")
2014-09-06 18:14:16 +03:00
*/
2014-09-06 18:29:14 +03:00
class DDC3231User2
2014-09-06 18:14:16 +03:00
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @Column(type="string", length=255)
*/
protected $name;
}