for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omatech\Mage\Core\Domains\Roles\Jobs;
use Omatech\Mage\Core\Domains\Roles\Contracts\UpdateRoleInterface;
use Omatech\Mage\Core\Domains\Roles\Role;
class UpdateRole
{
/**
* @param Role $role
* @return bool
*/
public function make(Role $role): bool
return resolve(UpdateRoleInterface::class)->update($role);
}