mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 18:00:56 -04: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()
|
|
{
|
|
}
|
|
}
|