mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-02 13:13:11 +08:00
11 lines
191 B
PHP
11 lines
191 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\CLI\Install;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
interface ConfigCustomizerPluginManagerInterface extends ContainerInterface
|
|
{
|
|
}
|