akaunting/app/Events/Common/GlobalSearched.php

21 lines
290 B
PHP
Raw Permalink Normal View History

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