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 Psalm\Type\Ato..
Decoded Output download
<?php
namespace Psalm\Storage\Assertion;
use Psalm\Storage\Assertion;
use Psalm\Type\Atomic;
/**
* @psalm-immutable
*/
final class IsNotIdentical extends Assertion
{
public Atomic $type;
public function __construct(Atomic $type)
{
$this->type = $type;
}
public function isNegation(): bool
{
return true;
}
public function getNegation(): Assertion
{
return new IsIdentical($this->type);
}
public function hasEquality(): bool
{
return true;
}
public function __toString(): string
{
return '!=' . $this->type->getAssertionString();
}
public function getAtomicType(): ?Atomic
{
return $this->type;
}
/**
* @return static
*/
public function setAtomicType(Atomic $type): self
{
return new static($type);
}
public function isNegationOf(Assertion $assertion): bool
{
return $assertion instanceof IsIdentical && $this->type->getId() === $assertion->type->getId();
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Psalm\Storage\Assertion;
use Psalm\Storage\Assertion;
use Psalm\Type\Atomic;
/**
* @psalm-immutable
*/
final class IsNotIdentical extends Assertion
{
public Atomic $type;
public function __construct(Atomic $type)
{
$this->type = $type;
}
public function isNegation(): bool
{
return true;
}
public function getNegation(): Assertion
{
return new IsIdentical($this->type);
}
public function hasEquality(): bool
{
return true;
}
public function __toString(): string
{
return '!=' . $this->type->getAssertionString();
}
public function getAtomicType(): ?Atomic
{
return $this->type;
}
/**
* @return static
*/
public function setAtomicType(Atomic $type): self
{
return new static($type);
}
public function isNegationOf(Assertion $assertion): bool
{
return $assertion instanceof IsIdentical && $this->type->getId() === $assertion->type->getId();
}
}
Function Calls
None |
Stats
MD5 | 2229912b107aab68e481b5afeeb087dc |
Eval Count | 0 |
Decode Time | 82 ms |