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

  1. <?php
  2. namespace App\Utilities\Zarinpal\Laravel\Facade;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @method static request($callbackURL, $Amount, $Description, $Email = null, $Mobile = null,$additionalData = null)
  6. * @method static verify($status, $amount, $authority)
  7. * @method static redirect()
  8. * @method static getDriver()
  9. */
  10. class Zarinpal extends Facade
  11. {
  12. /**
  13. * Get the registered name of the component.
  14. *
  15. * @return string
  16. */
  17. protected static function getFacadeAccessor()
  18. {
  19. return 'Zarinpal';
  20. }
  21. }