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 Doctrine\ORM; /** * Exception thrown when an ..

Decoded Output download

<?php

declare(strict_types=1);

namespace Doctrine\ORM;

/**
 * Exception thrown when an ORM query unexpectedly does not return any results.
 */
class NoResultException extends UnexpectedResultException
{
    public function __construct()
    {
        parent::__construct('No result was found for query although at least one row was expected.');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Doctrine\ORM;

/**
 * Exception thrown when an ORM query unexpectedly does not return any results.
 */
class NoResultException extends UnexpectedResultException
{
    public function __construct()
    {
        parent::__construct('No result was found for query although at least one row was expected.');
    }
}

Function Calls

None

Variables

None

Stats

MD5 0d58cb73a082dc7360dc8b185c001393
Eval Count 0
Decode Time 92 ms