1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Events/UserSignedUp.php

19 lines
261 B
PHP
Raw Normal View History

2015-09-25 11:57:40 +02:00
<?php namespace App\Events;
use Illuminate\Queue\SerializesModels;
/**
* Class UserSignedUp
*/
class UserSignedUp extends Event
{
use SerializesModels;
2015-09-25 11:57:40 +02:00
/**
* Create a new event instance.
*/
public function __construct()
{
}
2015-09-25 11:57:40 +02:00
}