1 | <?php |
||
2 | |||
3 | namespace Orkhanahmadov\YandexCheckout\Events; |
||
4 | |||
5 | use Illuminate\Foundation\Events\Dispatchable; |
||
6 | use Illuminate\Queue\SerializesModels; |
||
7 | use Orkhanahmadov\YandexCheckout\Models\YandexCheckout; |
||
8 | |||
9 | abstract class CheckoutEvent |
||
10 | { |
||
11 | use Dispatchable; |
||
12 | use SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
13 | |||
14 | /** |
||
15 | * @var YandexCheckout |
||
16 | */ |
||
17 | public $yandexCheckout; |
||
18 | |||
19 | /** |
||
20 | * Create a new event instance. |
||
21 | * |
||
22 | * @param YandexCheckout $yandexCheckout |
||
23 | */ |
||
24 | public function __construct(YandexCheckout $yandexCheckout) |
||
25 | { |
||
26 | $this->yandexCheckout = $yandexCheckout; |
||
27 | } |
||
28 | } |
||
29 |