PayAbstract.php 326 B

12345678910111213141516171819
  1. <?php
  2. namespace addons\YunfastPay\common\services\pays;
  3. use addons\YunfastPay\common\services\PayService;
  4. abstract class PayAbstract implements PayInterface
  5. {
  6. /**
  7. * @var PayService
  8. */
  9. protected $pay;
  10. public function __construct(PayService $payService)
  11. {
  12. $this->pay = $payService;
  13. }
  14. }