akaunting/app/Jobs/Auth/DeletePermission.php
2020-05-20 21:14:49 +03:00

33 lines
487 B
PHP

<?php
namespace App\Jobs\Auth;
use App\Abstracts\Job;
class DeletePermission extends Job
{
protected $permission;
/**
* Create a new job instance.
*
* @param $permission
*/
public function __construct($permission)
{
$this->permission = $permission;
}
/**
* Execute the job.
*
* @return boolean|Exception
*/
public function handle()
{
$this->permission->delete();
return true;
}
}