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 /** * @package Grav\Installer * * @copyright Copyright (c) 2015 - 2024 Trilb..

Decoded Output download

<?php

/**
 * @package    Grav\Installer
 *
 * @copyright  Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
 * @license    MIT License; see LICENSE file for details.
 */

namespace Grav\Installer;

use Throwable;

/**
 * Class InstallException
 * @package Grav\Installer
 */
class InstallException extends \RuntimeException
{
    /**
     * InstallException constructor.
     * @param string $message
     * @param Throwable $previous
     */
    public function __construct(string $message, Throwable $previous)
    {
        parent::__construct($message, $previous->getCode(), $previous);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * @package    Grav\Installer
 *
 * @copyright  Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
 * @license    MIT License; see LICENSE file for details.
 */

namespace Grav\Installer;

use Throwable;

/**
 * Class InstallException
 * @package Grav\Installer
 */
class InstallException extends \RuntimeException
{
    /**
     * InstallException constructor.
     * @param string $message
     * @param Throwable $previous
     */
    public function __construct(string $message, Throwable $previous)
    {
        parent::__construct($message, $previous->getCode(), $previous);
    }
}

Function Calls

None

Variables

None

Stats

MD5 5838fa4a649743b777579048affd538b
Eval Count 0
Decode Time 96 ms