for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Apache OSL-2
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Amazonpay\Business\Payment\Handler\Ipn;
use Spryker\Shared\Kernel\Transfer\AbstractTransfer;
class IpnEmptyHandler implements IpnRequestHandlerInterface
{
* @param \Spryker\Shared\Kernel\Transfer\AbstractTransfer $amazonpayIpnRequestTransfer
*
* @return void
public function handle(AbstractTransfer $amazonpayIpnRequestTransfer)
// do nothing. but probably logging has to be added. and for others transactions as well
}