mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-08 21:07:32 +03:00
17 lines
329 B
PHP
17 lines
329 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Shlinkio\Shlink\CLI\ApiKey;
|
||
|
|
||
|
use Shlinkio\Shlink\Rest\ApiKey\Model\RoleDefinition;
|
||
|
use Symfony\Component\Console\Input\InputInterface;
|
||
|
|
||
|
interface RoleResolverInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return RoleDefinition[]
|
||
|
*/
|
||
|
public function determineRoles(InputInterface $input): array;
|
||
|
}
|