Crunz\Console\Command\ClosureRunCommand::execute PHP Метод

execute() защищенный Метод

Executes the current command
protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : null | integer
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
Результат null | integer null or 0 if everything went fine, or an error code
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $args = [];
        $this->arguments = $input->getArguments();
        parse_str($this->arguments['closure'], $args);
        $serializer = new Serializer();
        call_user_func_array($serializer->unserialize($args[0]), []);
    }
ClosureRunCommand