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 Larastan\Larastan\Properties; use ReflectionNa..

Decoded Output download

<?php

declare(strict_types=1);

namespace Larastan\Larastan\Properties;

use ReflectionNamedType;

/** @internal */
final class ReflectionTypeContainer extends ReflectionNamedType
{
    public function __construct(private string $type)
    {
    }

    public function allowsNull(): bool
    {
        return false;
    }

    public function isBuiltin(): bool
    {
        return false;
    }

    public function __toString(): string
    {
        return $this->getName();
    }

    public function getName(): string
    {
        return $this->type;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Larastan\Larastan\Properties;

use ReflectionNamedType;

/** @internal */
final class ReflectionTypeContainer extends ReflectionNamedType
{
    public function __construct(private string $type)
    {
    }

    public function allowsNull(): bool
    {
        return false;
    }

    public function isBuiltin(): bool
    {
        return false;
    }

    public function __toString(): string
    {
        return $this->getName();
    }

    public function getName(): string
    {
        return $this->type;
    }
}

Function Calls

None

Variables

None

Stats

MD5 611a7e97842d4b80274751717492eb77
Eval Count 0
Decode Time 89 ms