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 declare(strict_types=1); namespace League\Event; class StubMutableEvent { /**..

Decoded Output download

<?php

declare(strict_types=1);

namespace League\Event;

class StubMutableEvent
{
    /**
     * @var string
     */
    private $value;

    public function __construct(string $value)
    {
        $this->value = $value;
    }

    public function value(): string
    {
        return $this->value;
    }

    public function append(string $value): void
    {
        $this->value .= $value;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace League\Event;

class StubMutableEvent
{
    /**
     * @var string
     */
    private $value;

    public function __construct(string $value)
    {
        $this->value = $value;
    }

    public function value(): string
    {
        return $this->value;
    }

    public function append(string $value): void
    {
        $this->value .= $value;
    }
}

Function Calls

None

Variables

None

Stats

MD5 acf4a1c80ef85dcf1cb0e63f23143814
Eval Count 0
Decode Time 101 ms