1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
- namespace Translatable\Fixture;
-
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
-
-
- class Person
- {
-
-
- private $id;
-
-
-
- private $name;
-
- public function getId()
- {
- return $this->id;
- }
-
- public function setName($name)
- {
- $this->name = $name;
- }
-
- public function getName()
- {
- return $this->name;
- }
- }
|