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 TestTagOnConstructorIgnoredInTestNamespace { use DaveLiddament\PhpLa..
Decoded Output download
<?php
namespace TestTagOnConstructorIgnoredInTestNamespace {
use DaveLiddament\PhpLanguageExtensions\TestTag;
class Person
{
#[TestTag]
public function __construct()
{
}
}
}
namespace TestTagOnConstructorIgnoredInTestNamespace\Test {
use TestTagOnConstructorIgnoredInTestNamespace\Person;
class PersonBuilder
{
public function buildPerson(): Person
{
return new Person(); // OK TetTag called from the test namespace
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace TestTagOnConstructorIgnoredInTestNamespace {
use DaveLiddament\PhpLanguageExtensions\TestTag;
class Person
{
#[TestTag]
public function __construct()
{
}
}
}
namespace TestTagOnConstructorIgnoredInTestNamespace\Test {
use TestTagOnConstructorIgnoredInTestNamespace\Person;
class PersonBuilder
{
public function buildPerson(): Person
{
return new Person(); // OK TetTag called from the test namespace
}
}
}
Function Calls
None |
Stats
MD5 | 7c730657132cd6dbc511863caa12f4e7 |
Eval Count | 0 |
Decode Time | 141 ms |