17 lines
290 B
PHP
17 lines
290 B
PHP
<?php
|
|
|
|
namespace App\Interface\Test\Composite;
|
|
|
|
interface PermissionComponentInterface
|
|
{
|
|
/**
|
|
* @param string $permission
|
|
* @return bool
|
|
*/
|
|
public function check(string $permission): bool;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName(): string;
|
|
} |