Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 476 Bytes

NotificationKey.md

File metadata and controls

23 lines (19 loc) · 476 Bytes
<?php

namespace Acme\NotificationBundle\Entity;

use Doctrine\ORM\Mapping AS ORM;
use Oz\NotificationBundle\Entity\NotificationKey as BaseNotificationKey;


/**
 * @ORM\Entity
 * @ORM\Table(name="notification_key")
 */
class NotificationKey extends BaseNotificationKey
{
    /**
     *
     * @var Array
     * @ORM\OneToMany(targetEntity="MethodMetadata", mappedBy="notificationKey", cascade={"all"}, orphanRemoval=true)
     */
    protected $methodMetadata;
}