1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Symfony\Bridge\Doctrine\Tests\Fixtures;
- use Doctrine\ORM\Mapping\Column;
- use Doctrine\ORM\Mapping\Entity;
- use Doctrine\ORM\Mapping\Id;
- class SingleIntIdNoToStringEntity
- {
-
- protected $id;
-
- public $name;
- public function __construct($id, $name)
- {
- $this->id = $id;
- $this->name = $name;
- }
- }
|