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 ObjectHintsClass extends EmptyClass { ..

Decoded Output download

<?php

namespace LaminasTest\Code\TestAsset;

class ObjectHintsClass extends EmptyClass
{
    public function objectParameter(object $foo)
    {
    }

    public function nullableObjectParameter(?object $foo)
    {
    }

    public function nullDefaultObjectParameter(object $foo = null)
    {
    }

    public function objectReturnValue() : object
    {
    }

    public function nullableObjectReturnValue() : ?object
    {
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace LaminasTest\Code\TestAsset;

class ObjectHintsClass extends EmptyClass
{
    public function objectParameter(object $foo)
    {
    }

    public function nullableObjectParameter(?object $foo)
    {
    }

    public function nullDefaultObjectParameter(object $foo = null)
    {
    }

    public function objectReturnValue() : object
    {
    }

    public function nullableObjectReturnValue() : ?object
    {
    }
}

Function Calls

None

Variables

None

Stats

MD5 7d495acb85e99e906ba58b66cc39d0a6
Eval Count 0
Decode Time 84 ms