mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-31 13:54:55 +03:00
19 lines
553 B
PHP
19 lines
553 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
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);
|
|
}
|