1
0
Fork 0
mirror of https://github.com/shlinkio/shlink.git synced 2025-03-31 13:54:55 +03:00
shlink/module/CLI/src/Install/Plugin/ConfigCustomizerPluginInterface.php
2017-10-12 10:13:20 +02:00

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);
}