mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
21 lines
263 B
PHP
21 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class UserSignedUp.
|
|
*/
|
|
class UserSignedUp extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
}
|