12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Translatable\Fixture\Issue75;
- /**
- * @Entity
- */
- class File
- {
- /**
- * @Id
- * @GeneratedValue
- * @Column(type="integer")
- */
- private $id;
- /**
- * @gedmo:Translatable
- * @Column(name="title", type="string", length=128)
- */
- private $title;
- public function getId()
- {
- return $this->id;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|