12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Shop\PaymentMethods;
- class Payment
- {
- /**
- * @var $payment
- */
- protected $payment;
- /**
- * Payment constructor.
- * @param $class
- */
- public function __construct($class)
- {
- $this->payment = $class;
- }
- /**
- * @return mixed
- */
- public function init()
- {
- return $this->payment;
- }
- }
|