akaunting/app/Events/Common/CompanyCreated.php

21 lines
295 B
PHP
Raw Normal View History

2020-09-13 21:57:10 +03:00
<?php
namespace App\Events\Common;
2020-11-21 20:24:42 +03:00
use App\Abstracts\Event;
2020-09-13 21:57:10 +03:00
2020-11-21 20:24:42 +03:00
class CompanyCreated extends Event
2020-09-13 21:57:10 +03:00
{
public $company;
/**
* Create a new event instance.
*
* @param $company
*/
public function __construct($company)
{
$this->company = $company;
}
}