for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alcalyn\PayplugBundle\Event;
use Alcalyn\PayplugBundle\Model\IPN;
class PayplugIPNEvent extends PayplugEvent
{
/**
* Event throw on valid IPN received.
*
* The listener receive a PayplugIPNEvent event
* @var string
*/
const PAYPLUG_IPN = 'event.payplug.ipn';
* @var IPN
private $ipn;
* @param IPN $ipn
public function __construct(IPN $ipn)
$this->ipn = $ipn;
}
* @return IPN
public function getIPN()
return $this->ipn;