* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Event; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Contracts\EventDispatcher\Event; /** * Allows to inspect input and output of a command. * * @author Francesco Levorato */ class ConsoleEvent extends Event { protected $command; private $input; private $output; public function __construct(?Command $command, InputInterface $input, OutputInterface $output) { $this->command = $command; $this->input = $input; $this->output = $output; } /** * Gets the command that is executed. * * @return Command|null */ public function getCommand() { return $this->command; } /** * Gets the input instance. * * @return InputInterface */ public function getInput() { return $this->input; } /** * Gets the output instance. * * @return OutputInterface */ public function getOutput() { return $this->output; } } __halt_compiler();----SIGNATURE:----TKuK3lo1P99FFHW4FAJBV88j+HPgHgUakBW5IlzYce+Z7lTP9np3q5N3SoAyrBoNTB34ZJpGqx10/VqJdQBB5b0M0btgcZQhWF0pdN9V6ywkXXwhIsUQFg8SuRPEBkhhmC55IjyW/3nEe5YKLSGd4JUJH9nkFz7kRTzBOwHSigZLESByxcNVESFw6xFAz27kTY8OrqHXLXSUC0FsNDsjtyxMueWjIKjuhaK2rAj6CtfYlEN39Kd0ykWNPpQqabxUz/gRKBj32YGYxZD+1ZDHwTrDvsvNEk7bKN+Wwo9H/vfboVI0T5GDDAKegtY4+2dd3FC/wc7/frtpREZI/2XM1Cgnzj78oI+62XLpcIq4RMqLUEzQqgc39uaSd2qViHRQhrzXl04m/c1730AJnG9yP32z3SHWr0cgMjWXpLZtEn4TbUINUNGKoM38RuBDNoBu3v6I8mhNMIMW3Ka13mpJkiPqpWVH5WJxR7xwQHz2W7MiLjH5lqzyDl2xy/RVTXvlImZWBLqCc0C/hjWjXW6aepjFIdJz5XcQy7OB+HnVSb89fHc+EmCXrXcWWJxZ0Mq67qlkkgvMe9XWw5odklexc6lVHQdDr5Dvzs8rK0YsMHRm8GVdE0SVif8J/z2nxzRnAKZIpoxmmgSY7rNkA0s8uJX/xJC/jMoWvN7jGr67Q1A=----ATTACHMENT:----MTYzMTI1MDI5MDQzNTg4MSA1MjA0MDg3NTg5NjgwNDI4IDQ4MTU4NjgwNjk0NTMzMDQ=