BeatSwitch/lock

View on GitHub
src/Roles/Role.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace BeatSwitch\Lock\Roles;

interface Role
{
    /**
     * The name for this role instance
     *
     * @return string
     */
    public function getRoleName();

    /**
     * The name for the role from which this role inherits permissions
     *
     * @return string|null
     */
    public function getInheritedRole();
}