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 FooHiddenCommand extends Command
{
    protected function configure(): void
    {
        $this
            ->setName('foo:hidden')
            ->setAliases(['afoohidden'])
            ->setHidden()
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output): int
    {
        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 FooHiddenCommand extends Command
{
    protected function configure(): void
    {
        $this
            ->setName('foo:hidden')
            ->setAliases(['afoohidden'])
            ->setHidden()
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output): int
    {
        return 0;
    }
}

Function Calls

None

Variables

None

Stats

MD5 bc720a21dca240ed49dcb2980f575d65
Eval Count 0
Decode Time 98 ms