mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-05 14:53:12 +08:00
13 lines
230 B
PHP
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;
|
|
}
|