mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-07 15:53:13 +08:00
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest\Authentication;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
interface AuthenticationPluginManagerInterface extends ContainerInterface
|
|
{
|
|
}
|