Akaunting/app/Events/Common/ImportViewCreated.php

22 lines
291 B
PHP

<?php
namespace App\Events\Common;
use App\Abstracts\Event;
class ImportViewCreated extends Event
{
public $view;
/**
* Create a new event instance.
*
* @param $view
*
*/
public function __construct($view)
{
$this->view = $view;
}
}