Introduced a BaseEntity for more easy access to all the properties.

This commit is contained in:
Tim Schumacher 2014-07-19 09:25:09 +02:00
parent e3ca015608
commit 12e7dafe0d
5 changed files with 97 additions and 372 deletions

View file

@ -0,0 +1,23 @@
<?php
namespace Hackspace\Bundle\CalciferBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\ORM\PersistentCollection;
/**
* RepeatEvent
*
* @ORM\Table(name="repeat_events")
* @ORM\Entity
*/
class RepeatEvent extends Event
{
/**
* @var string
*
* @ORM\Column(name="name", type="string", length=255)
*/
private $repeat_pattern = '';
}