You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
553 B
24 lines
553 B
<?php
|
|
|
|
namespace App\Utilities\Zarinpal\Laravel\Facade;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static request($callbackURL, $Amount, $Description, $Email = null, $Mobile = null,$additionalData = null)
|
|
* @method static verify($status, $amount, $authority)
|
|
* @method static redirect()
|
|
* @method static getDriver()
|
|
*/
|
|
class Zarinpal extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'Zarinpal';
|
|
}
|
|
}
|