This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Runtime/Tests/phpt/command.php

16 lines
449 B
PHP

<?php
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
require __DIR__.'/autoload.php';
return function (Command $command, InputInterface $input, OutputInterface $output, array $context) {
$command->setCode(function () use ($output, $context) {
$output->write('OK Command '.$context['SOME_VAR']);
});
return $command;
};