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 declare(strict_types=1); namespace Symplify\EasyCodingStandard\Console; use Symfo..

Decoded Output download

<?php

declare(strict_types=1);

namespace Symplify\EasyCodingStandard\Console;

use Symfony\Component\Console\Command\Command;

final class ExitCode
{
    /**
     * @var int
     */
    public const SUCCESS = Command::SUCCESS;

    /**
     * @var int
     */
    public const FAILURE = Command::FAILURE;

    /**
     * @var int
     */
    public const CHANGED_CODE_OR_FOUND_ERRORS = 2;
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Symplify\EasyCodingStandard\Console;

use Symfony\Component\Console\Command\Command;

final class ExitCode
{
    /**
     * @var int
     */
    public const SUCCESS = Command::SUCCESS;

    /**
     * @var int
     */
    public const FAILURE = Command::FAILURE;

    /**
     * @var int
     */
    public const CHANGED_CODE_OR_FOUND_ERRORS = 2;
}

Function Calls

None

Variables

None

Stats

MD5 0f7a224452f56b87a887d05aadccfd69
Eval Count 0
Decode Time 91 ms