Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\..
Decoded Output download
<?php
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class FooWithoutAliasCommand extends Command
{
protected function configure(): void
{
$this
->setName('foo')
->setDescription('The foo command')
;
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln('called');
return 0;
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class FooWithoutAliasCommand extends Command
{
protected function configure(): void
{
$this
->setName('foo')
->setDescription('The foo command')
;
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln('called');
return 0;
}
}
Function Calls
None |
Stats
MD5 | 49c6226230ba74ceafa2d493587e949f |
Eval Count | 0 |
Decode Time | 75 ms |