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 Flarum. * * For detailed copyright and license informa..

Decoded Output download

<?php

/*
 * This file is part of Flarum.
 *
 * For detailed copyright and license information, please view the
 * LICENSE file that was distributed with this source code.
 */

namespace Flarum\ExtensionManager\Exception;

use Exception;
use Flarum\Foundation\KnownError;

class NoNewMajorVersionException extends Exception implements KnownError
{
    public function __construct()
    {
        parent::__construct('No new major version known of. Try checking for updates first.');
    }

    public function getType(): string
    {
        return 'no_new_major_version';
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/*
 * This file is part of Flarum.
 *
 * For detailed copyright and license information, please view the
 * LICENSE file that was distributed with this source code.
 */

namespace Flarum\ExtensionManager\Exception;

use Exception;
use Flarum\Foundation\KnownError;

class NoNewMajorVersionException extends Exception implements KnownError
{
    public function __construct()
    {
        parent::__construct('No new major version known of. Try checking for updates first.');
    }

    public function getType(): string
    {
        return 'no_new_major_version';
    }
}

Function Calls

None

Variables

None

Stats

MD5 dc36a89772afbefde30c75b3863a4cbd
Eval Count 0
Decode Time 80 ms