1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Translatable\Fixture;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class MixedValue
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @Gedmo\Translatable
- * @ORM\Column(type="datetime")
- */
- private $date;
- /**
- * @Gedmo\Translatable
- * @ORM\Column(type="custom")
- */
- private $cust;
- public function getId()
- {
- return $this->id;
- }
- public function setDate($date)
- {
- $this->date = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setCust($cust)
- {
- $this->cust = $cust;
- }
- public function getCust()
- {
- return $this->cust;
- }
- }
|