PayPal\Api\WebhookEventList::addEvent PHP Method

addEvent() public method

Append Events to the list.
public addEvent ( WebhookEvent $webhookEvent )
$webhookEvent WebhookEvent
    public function addEvent($webhookEvent)
    {
        if (!$this->getEvents()) {
            return $this->setEvents(array($webhookEvent));
        } else {
            return $this->setEvents(array_merge($this->getEvents(), array($webhookEvent)));
        }
    }