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 TestTagOnStaticMethod; use DaveLiddament\PhpLanguageExtensions\TestTag;..

Decoded Output download

<?php

namespace TestTagOnStaticMethod;


use DaveLiddament\PhpLanguageExtensions\TestTag;

class Person
{
    #[TestTag]
    public static function updateName(): void
    {
    }

    public static function update(): void
    {
        Person::updateName(); // ERROR
    }

    public static function updateSelf(): void
    {
        self::updateName(); // ERROR
    }
}

class Updater
{
    public function updater(): void
    {
        Person::updateName(); // ERROR
    }
}

Person::updateName(); // ERROR
 ?>

Did this file decode correctly?

Original Code

<?php

namespace TestTagOnStaticMethod;


use DaveLiddament\PhpLanguageExtensions\TestTag;

class Person
{
    #[TestTag]
    public static function updateName(): void
    {
    }

    public static function update(): void
    {
        Person::updateName(); // ERROR
    }

    public static function updateSelf(): void
    {
        self::updateName(); // ERROR
    }
}

class Updater
{
    public function updater(): void
    {
        Person::updateName(); // ERROR
    }
}

Person::updateName(); // ERROR

Function Calls

None

Variables

None

Stats

MD5 4507a1f6657aed2fd6f830b0d8e6b59a
Eval Count 0
Decode Time 112 ms