Akaunting/app/Events/Common/CompanyCreated.php

24 lines
369 B
PHP
Raw Normal View History

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