Introduced a BaseEntity for more easy access to all the properties.
This commit is contained in:
parent
e3ca015608
commit
12e7dafe0d
5 changed files with 97 additions and 372 deletions
23
src/Hackspace/Bundle/CalciferBundle/Entity/RepeatEvent.php
Executable file
23
src/Hackspace/Bundle/CalciferBundle/Entity/RepeatEvent.php
Executable 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 = '';
|
||||
|
||||
}
|
Reference in a new issue