LSPPayment.php 327 B

12345678910111213141516
  1. <?php
  2. namespace app\common\payment\method\other;
  3. use app\common\payment\method\BasePayment;
  4. use app\common\payment\setting\other\LSPSetting;
  5. class LSPPayment extends BasePayment
  6. {
  7. public $code = 'LSP';
  8. public function __construct(LSPSetting $paymentSetting)
  9. {
  10. $this->setSetting($paymentSetting);
  11. }
  12. }