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 /** * Sandro Keil (https://sandro-keil.de) * * @link http://github.com/sandr..

Decoded Output download

<?php
/**
 * Sandro Keil (https://sandro-keil.de)
 *
 * @link      http://github.com/sandrokeil/php-to-zephir for the canonical source repository
 * @copyright Copyright (c) 2018 Sandro Keil
 * @license   http://github.com/sandrokeil/php-to-zephir/blob/master/LICENSE.md New BSD License
 */

declare(strict_types=1);

namespace PhpToZephir\Exception;

class FileNotExistsException extends RuntimeException
{
    public static function forFile(string $file): FileNotExistsException
    {
        return new self(
            sprintf('"%s" does not exists.', $file)
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Sandro Keil (https://sandro-keil.de)
 *
 * @link      http://github.com/sandrokeil/php-to-zephir for the canonical source repository
 * @copyright Copyright (c) 2018 Sandro Keil
 * @license   http://github.com/sandrokeil/php-to-zephir/blob/master/LICENSE.md New BSD License
 */

declare(strict_types=1);

namespace PhpToZephir\Exception;

class FileNotExistsException extends RuntimeException
{
    public static function forFile(string $file): FileNotExistsException
    {
        return new self(
            sprintf('"%s" does not exists.', $file)
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 b1051a126abca27a09a706f883ce3dd4
Eval Count 0
Decode Time 108 ms