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 namespace Psalm\Storage\Assertion; use Psalm\Storage\Assertion; use UnexpectedValu..

Decoded Output download

<?php

namespace Psalm\Storage\Assertion;

use Psalm\Storage\Assertion;
use UnexpectedValueException;

/**
 * @psalm-immutable
 */
final class HasStringArrayAccess extends Assertion
{
    public function getNegation(): Assertion
    {
        throw new UnexpectedValueException('This should never be called');
    }

    public function __toString(): string
    {
        return 'has-string-array-access';
    }

    public function isNegationOf(Assertion $assertion): bool
    {
        return false;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Psalm\Storage\Assertion;

use Psalm\Storage\Assertion;
use UnexpectedValueException;

/**
 * @psalm-immutable
 */
final class HasStringArrayAccess extends Assertion
{
    public function getNegation(): Assertion
    {
        throw new UnexpectedValueException('This should never be called');
    }

    public function __toString(): string
    {
        return 'has-string-array-access';
    }

    public function isNegationOf(Assertion $assertion): bool
    {
        return false;
    }
}

Function Calls

None

Variables

None

Stats

MD5 8b4bde6668794cc69528f8a874b3b3ca
Eval Count 0
Decode Time 86 ms