<?phpnamespace App\Entity\Gos;use App\Repository\Gos\EventNotificationSchedulerRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=EventNotificationSchedulerRepository::class) */class EventNotificationScheduler extends BaseEventNotifications{ public const EventDate = 'event'; public const OrderDate = 'order'; /** * @ORM\ManyToOne(targetEntity=OrderProductVariant::class, inversedBy="eventNotificationSchedulers") */ protected $orderProductVariant;}