1234567891011121314151617181920212223 |
- <?php
- namespace Symfony\Tests\Bridge\Doctrine\Fixtures;
- use Doctrine\ORM\Mapping\Id;
- use Doctrine\ORM\Mapping\Column;
- use Doctrine\ORM\Mapping\Entity;
- /** @Entity */
- class SingleStringIdentEntity
- {
- /** @Id @Column(type="string") */
- protected $id;
- /** @Column(type="string") */
- public $name;
- public function __construct($id, $name)
- {
- $this->id = $id;
- $this->name = $name;
- }
- }
|