mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-04 22:33:12 +08:00
13 lines
356 B
PHP
13 lines
356 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\CLI\Install;
|
|
|
|
use Shlinkio\Shlink\CLI\Install\Plugin\ConfigCustomizerInterface;
|
|
use Zend\ServiceManager\AbstractPluginManager;
|
|
|
|
class ConfigCustomizerManager extends AbstractPluginManager implements ConfigCustomizerManagerInterface
|
|
{
|
|
protected $instanceOf = ConfigCustomizerInterface::class;
|
|
}
|