mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
18 lines
527 B
PHP
18 lines
527 B
PHP
<?php
|
|
namespace Shlinkio\Shlink\CLI\Install\Plugin;
|
|
|
|
use Shlinkio\Shlink\CLI\Model\CustomizableAppConfig;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
interface ConfigCustomizerPluginInterface
|
|
{
|
|
/**
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
* @param CustomizableAppConfig $appConfig
|
|
* @return void
|
|
*/
|
|
public function process(InputInterface $input, OutputInterface $output, CustomizableAppConfig $appConfig);
|
|
}
|