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 NullNullableDefaultHintsClass extends ..
Decoded Output download
<?php
namespace LaminasTest\Code\TestAsset;
class NullNullableDefaultHintsClass extends EmptyClass
{
public function arrayParameter(?array $foo = null)
{
}
public function callableParameter(?callable $foo = null)
{
}
public function intParameter(?int $foo = null)
{
}
public function floatParameter(?float $foo = null)
{
}
public function stringParameter(?string $foo = null)
{
}
public function boolParameter(?bool $foo = null)
{
}
public function selfParameter(?self $foo = null)
{
}
public function parentParameter(?parent $foo = null)
{
}
public function nullableDefaultHintsClassParameter(?NullNullableDefaultHintsClass $foo = null)
{
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace LaminasTest\Code\TestAsset;
class NullNullableDefaultHintsClass extends EmptyClass
{
public function arrayParameter(?array $foo = null)
{
}
public function callableParameter(?callable $foo = null)
{
}
public function intParameter(?int $foo = null)
{
}
public function floatParameter(?float $foo = null)
{
}
public function stringParameter(?string $foo = null)
{
}
public function boolParameter(?bool $foo = null)
{
}
public function selfParameter(?self $foo = null)
{
}
public function parentParameter(?parent $foo = null)
{
}
public function nullableDefaultHintsClassParameter(?NullNullableDefaultHintsClass $foo = null)
{
}
}
Function Calls
None |
Stats
MD5 | e1287ed16a5eb0bb241755f392b71efb |
Eval Count | 0 |
Decode Time | 97 ms |