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 LaminasTest\Code\TestAsset; class NullableHintsClass extends EmptyClass ..

Decoded Output download

<?php

namespace LaminasTest\Code\TestAsset;

class NullableHintsClass extends EmptyClass
{
    public function arrayParameter(?array $foo)
    {
    }

    public function callableParameter(?callable $foo)
    {
    }

    public function intParameter(?int $foo)
    {
    }

    public function floatParameter(?float $foo)
    {
    }

    public function stringParameter(?string $foo)
    {
    }

    public function boolParameter(?bool $foo)
    {
    }

    public function selfParameter(?self $foo)
    {
    }

    public function parentParameter(?parent $foo)
    {
    }

    public function nullableHintsClassParameter(?NullableHintsClass $foo)
    {
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace LaminasTest\Code\TestAsset;

class NullableHintsClass extends EmptyClass
{
    public function arrayParameter(?array $foo)
    {
    }

    public function callableParameter(?callable $foo)
    {
    }

    public function intParameter(?int $foo)
    {
    }

    public function floatParameter(?float $foo)
    {
    }

    public function stringParameter(?string $foo)
    {
    }

    public function boolParameter(?bool $foo)
    {
    }

    public function selfParameter(?self $foo)
    {
    }

    public function parentParameter(?parent $foo)
    {
    }

    public function nullableHintsClassParameter(?NullableHintsClass $foo)
    {
    }
}

Function Calls

None

Variables

None

Stats

MD5 2da3b1cec352e0be40632490cd216d2f
Eval Count 0
Decode Time 95 ms