refactored module commands
This commit is contained in:
22
app/Events/Install/UpdateCacheCleared.php
Normal file
22
app/Events/Install/UpdateCacheCleared.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Install;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class UpdateCacheCleared
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
public $company_id;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param $company_id
|
||||
*/
|
||||
public function __construct($company_id)
|
||||
{
|
||||
$this->company_id = $company_id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user