for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Speicher210\FastbillBundle\Event;
use Speicher210\Fastbill\Api\Model\Notification\NotificationPayloadInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* Abstract notification event.
*/
abstract class AbstractNotificationEvent extends Event implements NotificationEventInterface
{
* The notification request payload data.
*
* @var NotificationPayloadInterface
protected $payloadData;
* {@inheritdoc}
public function getPayloadData()
return $this->payloadData;
}
public function setPayloadData(NotificationPayloadInterface $data)
$this->payloadData = $data;
return $this;