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

Decoded Output download

<?php

declare(strict_types=1);

namespace Larastan\Larastan\Types;

use Larastan\Larastan\Contracts\Types\PassableContract;
use PHPStan\Type\Type;

/** @internal */
final class Passable implements PassableContract
{
    public function __construct(private Type $type)
    {
    }

    public function getType(): Type
    {
        return $this->type;
    }

    public function setType(Type $type): void
    {
        $this->type = $type;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Larastan\Larastan\Types;

use Larastan\Larastan\Contracts\Types\PassableContract;
use PHPStan\Type\Type;

/** @internal */
final class Passable implements PassableContract
{
    public function __construct(private Type $type)
    {
    }

    public function getType(): Type
    {
        return $this->type;
    }

    public function setType(Type $type): void
    {
        $this->type = $type;
    }
}

Function Calls

None

Variables

None

Stats

MD5 f6579c2008fb3b914b7a7712317db8a2
Eval Count 0
Decode Time 88 ms