for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omatech\Mage\Core\Events\Roles;
use Omatech\Mage\Core\Domains\Roles\Contracts\RoleInterface;
class RoleUpdated
{
public $role;
public $wasUpdated;
/**
* RoleUpdated constructor.
*/
public function __construct(RoleInterface $role, bool $wasUpdated)
$this->role = $role;
$this->wasUpdated = $wasUpdated;
}