18 lines
248 B
PHP
18 lines
248 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
class CompanySwitched
|
||
|
{
|
||
|
public $company;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param $company
|
||
|
*/
|
||
|
public function __construct($company)
|
||
|
{
|
||
|
$this->company = $company;
|
||
|
}
|
||
|
}
|