1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Events/SubdomainWasRemoved.php
David Bomba 8e7b53fd26
Refactor Cloudflare DNS to add and remove A records for custom domains (#1905)
* Refactor Cloudflare DNS to add and remove A records for custom domains

* rebase
2018-02-20 21:14:21 +11:00

22 lines
333 B
PHP

<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class SubdomainWasRemoved extends Event
{
use SerializesModels;
public $account;
/**
* Create a new event instance.
*
* @param $account
*/
public function __construct($account)
{
$this->account = $account;
}
}