for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SprykerEco\Yves\Braintree\Controller;
use Spryker\Yves\Kernel\Controller\AbstractController;
class PaypalExpressController extends AbstractController
{
public function successAction()
var_dump('here'); exit;
exit
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.
var_dump('here')
}
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.