ProcessRunnerInterface.php 230 B

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