akaunting/app/Events/Common/CompanyCreating.php

21 lines
296 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 CompanyCreating extends Event
2020-09-13 21:57:10 +03:00
{
public $request;
/**
* Create a new event instance.
*
* @param $request
*/
public function __construct($request)
{
$this->request = $request;
}
}