1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Events/UserSettingsChanged.php

24 lines
324 B
PHP
Raw Normal View History

2015-03-31 19:42:37 +02:00
<?php namespace App\Events;
use App\Events\Event;
use Illuminate\Queue\SerializesModels;
class UserSettingsChanged extends Event {
use SerializesModels;
public $user;
2015-03-31 19:42:37 +02:00
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($user = false)
2015-03-31 19:42:37 +02:00
{
$this->user = $user;
2015-03-31 19:42:37 +02:00
}
}