Akaunting/app/Events/Report/GroupShowing.php

21 lines
283 B
PHP
Raw Normal View History

2020-01-27 19:41:08 +00:00
<?php
2020-01-31 09:59:12 +00:00
namespace App\Events\Report;
2020-01-27 19:41:08 +00:00
2020-11-21 17:24:42 +00:00
use App\Abstracts\Event;
2020-01-27 19:41:08 +00:00
2020-11-21 17:24:42 +00:00
class GroupShowing extends Event
2020-01-27 19:41:08 +00:00
{
public $class;
/**
* Create a new event instance.
*
* @param $class
*/
public function __construct($class)
{
$this->class = $class;
}
}