akaunting/app/Events/PaymentGatewayConfirm.php
2017-11-17 02:09:11 +03:00

23 lines
345 B
PHP

<?php
namespace App\Events;
class PaymentGatewayConfirm
{
public $gateway;
public $invoice;
/**
* Create a new event instance.
*
* @param $gateway
* @param $invoice
*/
public function __construct($gateway, $invoice)
{
$this->gateway = $gateway;
$this->invoice = $invoice;
}
}