| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- <?php
 - namespace Timestampable\Fixture;
 - 
 - use Gedmo\Timestampable\Traits\TimestampableEntity;
 - use Gedmo\Mapping\Annotation as Gedmo;
 - use Doctrine\ORM\Mapping as ORM;
 - 
 - /**
 -  * @ORM\Entity
 -  */
 - class UsingTrait
 - {
 -     /**
 -      * Hook timestampable behavior
 -      * updates createdAt, updatedAt fields
 -      */
 -     use TimestampableEntity;
 - 
 -     /**
 -      * @ORM\Id
 -      * @ORM\GeneratedValue
 -      * @ORM\Column(type="integer")
 -      */
 -     private $id;
 - 
 -     /**
 -      * @ORM\Column(length=128)
 -      */
 -     private $title;
 - 
 -     public function getId()
 -     {
 -         return $this->id;
 -     }
 - 
 -     public function setTitle($title)
 -     {
 -         $this->title = $title;
 -     }
 - 
 -     public function getTitle()
 -     {
 -         return $this->title;
 -     }
 - }
 
 
  |