for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Nxmad\Larapay\Requests;
use Nxmad\Larapay\Units\Redirect;
use Nxmad\Larapay\Abstracts\Request;
class PaymentRequest extends Request
{
/**
* @return Redirect
*/
public function send()
parent::send();
return $this->redirect();
}