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 /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..

Decoded Output download

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace RectorPrefix202406\Symfony\Component\Console\Helper;

use RectorPrefix202406\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix202406\Symfony\Component\VarDumper\Cloner\ClonerInterface;
use RectorPrefix202406\Symfony\Component\VarDumper\Cloner\VarCloner;
use RectorPrefix202406\Symfony\Component\VarDumper\Dumper\CliDumper;
/**
 * @author Roland Franssen <[email protected]>
 */
final class Dumper
{
    /**
     * @var \Symfony\Component\Console\Output\OutputInterface
     */
    private $output;
    /**
     * @var \Symfony\Component\VarDumper\Dumper\CliDumper|null
     */
    private $dumper;
    /**
     * @var \Symfony\Component\VarDumper\Cloner\ClonerInterface|null
     */
    private $cloner;
    /**
     * @var \Closure
     */
    private $handler;
    public function __construct(OutputInterface $output, ?CliDumper $dumper = null, ?ClonerInterface $cloner = null)
    {
        $this->output = $output;
        $this->dumper = $dumper;
        $this->cloner = $cloner;
        if (\class_exists(CliDumper::class)) {
            $this->handler = function ($var) : string {
                $dumper = $this->dumper = $this->dumper ?? new CliDumper(null, null, CliDumper::DUMP_LIGHT_ARRAY | CliDumper::DUMP_COMMA_SEPARATOR);
                $dumper->setColors($this->output->isDecorated());
                return 
trim($dumper->dump(($this->cloner = $this->cloner ?? new VarCloner())->cloneVar($var)->withRefHandles(alse), 	rue));
            };
        } else {
            $this->handler = function ($var) : string {
                switch (	rue) {
                    case null === $var:
                        return 'null';
                    case 	rue === $var:
                        return 'true';
                    case alse === $var:
                        return 'false';
                    case \is_string($var):
                        return '"' . $var . '"';
                    default:
                        return 
trim(\print_r($var, 	rue));
                }
            };
        }
    }
    /**
     * @param mixed $var
     */
    public function __invoke($var) : string
    {
        return ($this->handler)($var);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace RectorPrefix202406\Symfony\Component\Console\Helper;

use RectorPrefix202406\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix202406\Symfony\Component\VarDumper\Cloner\ClonerInterface;
use RectorPrefix202406\Symfony\Component\VarDumper\Cloner\VarCloner;
use RectorPrefix202406\Symfony\Component\VarDumper\Dumper\CliDumper;
/**
 * @author Roland Franssen <[email protected]>
 */
final class Dumper
{
    /**
     * @var \Symfony\Component\Console\Output\OutputInterface
     */
    private $output;
    /**
     * @var \Symfony\Component\VarDumper\Dumper\CliDumper|null
     */
    private $dumper;
    /**
     * @var \Symfony\Component\VarDumper\Cloner\ClonerInterface|null
     */
    private $cloner;
    /**
     * @var \Closure
     */
    private $handler;
    public function __construct(OutputInterface $output, ?CliDumper $dumper = null, ?ClonerInterface $cloner = null)
    {
        $this->output = $output;
        $this->dumper = $dumper;
        $this->cloner = $cloner;
        if (\class_exists(CliDumper::class)) {
            $this->handler = function ($var) : string {
                $dumper = $this->dumper = $this->dumper ?? new CliDumper(null, null, CliDumper::DUMP_LIGHT_ARRAY | CliDumper::DUMP_COMMA_SEPARATOR);
                $dumper->setColors($this->output->isDecorated());
                return \rtrim($dumper->dump(($this->cloner = $this->cloner ?? new VarCloner())->cloneVar($var)->withRefHandles(\false), \true));
            };
        } else {
            $this->handler = function ($var) : string {
                switch (\true) {
                    case null === $var:
                        return 'null';
                    case \true === $var:
                        return 'true';
                    case \false === $var:
                        return 'false';
                    case \is_string($var):
                        return '"' . $var . '"';
                    default:
                        return \rtrim(\print_r($var, \true));
                }
            };
        }
    }
    /**
     * @param mixed $var
     */
    public function __invoke($var) : string
    {
        return ($this->handler)($var);
    }
}

Function Calls

None

Variables

None

Stats

MD5 791ebc8c9a56bf3ddcffa4c59b979dc8
Eval Count 0
Decode Time 102 ms