Files
shlink/module/CLI/src/Util/ProcessRunnerInterface.php
2021-02-12 22:59:40 +01:00

13 lines
230 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\CLI\Util;
use Symfony\Component\Console\Output\OutputInterface;
interface ProcessRunnerInterface
{
public function run(OutputInterface $output, array $cmd): void;
}