ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/laravel/cashier/src/Events/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/laravel/cashier/src/Events/WebhookReceived.php |
<?php namespace Laravel\Cashier\Events; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class WebhookReceived { use Dispatchable, SerializesModels; /** * The webhook payload. * * @var array */ public $payload; /** * Create a new event instance. * * @param array $payload * @return void */ public function __construct(array $payload) { $this->payload = $payload; } }