akaunting/app/Events/PaymentGatewayListing.php
2017-09-14 22:21:00 +03:00

19 lines
260 B
PHP

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