1
0
mirror of synced 2025-01-25 09:41:40 +03:00
2014-08-03 17:02:33 +03:00

42 lines
597 B
PHP

<?php
namespace Doctrine\Tests\Models\DDC1590;
use Doctrine\Tests\Models\DDC1590\DDC1590Entity;
/**
* @Entity
* @Table(name="users")
*/
class DDC1590User extends DDC1590Entity
{
/**
* @Column(type="string", length=255)
*/
protected $name;
/**
* Set name
*
* @param string $name
*
* @return DDC1590User
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
}