mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-01 04:33:12 +08:00
11 lines
354 B
PHP
11 lines
354 B
PHP
<?php
|
|
namespace Shlinkio\Shlink\CLI\Install;
|
|
|
|
use Shlinkio\Shlink\CLI\Install\Plugin\ConfigCustomizerPluginInterface;
|
|
use Zend\ServiceManager\AbstractPluginManager;
|
|
|
|
class ConfigCustomizerPluginManager extends AbstractPluginManager implements ConfigCustomizerPluginManagerInterface
|
|
{
|
|
protected $instanceOf = ConfigCustomizerPluginInterface::class;
|
|
}
|