src/Entity/Gos/EventNotificationScheduler.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Gos;
  3. use App\Repository\Gos\EventNotificationSchedulerRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EventNotificationSchedulerRepository::class)
  7.  */
  8. class EventNotificationScheduler extends BaseEventNotifications
  9. {
  10.     public const EventDate 'event';
  11.     public const OrderDate 'order';
  12.     /**
  13.      * @ORM\ManyToOne(targetEntity=OrderProductVariant::class, inversedBy="eventNotificationSchedulers")
  14.      */
  15.     protected $orderProductVariant;
  16. }