renamed report events and listeners

This commit is contained in:
denisdulici
2020-01-31 12:59:12 +03:00
parent 5a5521e5ad
commit d5366e74cf
17 changed files with 106 additions and 106 deletions

View File

@@ -1,30 +0,0 @@
<?php
namespace App\Events\Common;
use Illuminate\Queue\SerializesModels;
class ReportFilterApplying
{
use SerializesModels;
public $class;
public $model;
public $args;
/**
* Create a new event instance.
*
* @param $class
* @param $model
* @param $args
*/
public function __construct($class, $model, $args)
{
$this->class = $class;
$this->model = $model;
$this->args = $args;
}
}

View File

@@ -1,22 +0,0 @@
<?php
namespace App\Events\Common;
use Illuminate\Queue\SerializesModels;
class ReportFilterShowing
{
use SerializesModels;
public $class;
/**
* Create a new event instance.
*
* @param $class
*/
public function __construct($class)
{
$this->class = $class;
}
}

View File

@@ -1,30 +0,0 @@
<?php
namespace App\Events\Common;
use Illuminate\Queue\SerializesModels;
class ReportGroupApplying
{
use SerializesModels;
public $class;
public $model;
public $args;
/**
* Create a new event instance.
*
* @param $class
* @param $model
* @param $args
*/
public function __construct($class, $model, $args)
{
$this->class = $class;
$this->model = $model;
$this->args = $args;
}
}

View File

@@ -1,22 +0,0 @@
<?php
namespace App\Events\Common;
use Illuminate\Queue\SerializesModels;
class ReportGroupShowing
{
use SerializesModels;
public $class;
/**
* Create a new event instance.
*
* @param $class
*/
public function __construct($class)
{
$this->class = $class;
}
}

View File

@@ -1,22 +0,0 @@
<?php
namespace App\Events\Common;
use Illuminate\Queue\SerializesModels;
class ReportRowsShowing
{
use SerializesModels;
public $class;
/**
* Create a new event instance.
*
* @param $class
*/
public function __construct($class)
{
$this->class = $class;
}
}