<?php
namespace Entity;
use Opifer\Revisions\Mapping\Annotation as Revisions;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="articles")
* @ORM\Entity
*/
class Article
{
/** @ORM\Id @ORM\GeneratedValue @ORM\Column(type="integer") */
private $id;
/**
* @Revisions\Revised
* @ORM\Column(length=128)
*/
private $title;
/**
* @Revisions\Revised
* @ORM\Column(type="text")
*/
private $content;
/**
* @Revisions\Draft
*/
private $draft;
}