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 Phug\Formatter\Event; use Phug\Event; use Phug\FormatterEvent; class De..

Decoded Output download

<?php

namespace Phug\Formatter\Event;

use Phug\Event;
use Phug\FormatterEvent;

class DependencyStorageEvent extends Event
{
    private $dependencyStorage;

    /**
     * DependencyStorageEvent constructor.
     *
     * @param string $dependencyStorage
     */
    public function __construct($dependencyStorage)
    {
        parent::__construct(FormatterEvent::DEPENDENCY_STORAGE);

        $this->dependencyStorage = $dependencyStorage;
    }

    /**
     * @return string
     */
    public function getDependencyStorage()
    {
        return $this->dependencyStorage;
    }

    /**
     * @param string $dependencyStorage
     */
    public function setDependencyStorage($dependencyStorage)
    {
        $this->dependencyStorage = $dependencyStorage;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Phug\Formatter\Event;

use Phug\Event;
use Phug\FormatterEvent;

class DependencyStorageEvent extends Event
{
    private $dependencyStorage;

    /**
     * DependencyStorageEvent constructor.
     *
     * @param string $dependencyStorage
     */
    public function __construct($dependencyStorage)
    {
        parent::__construct(FormatterEvent::DEPENDENCY_STORAGE);

        $this->dependencyStorage = $dependencyStorage;
    }

    /**
     * @return string
     */
    public function getDependencyStorage()
    {
        return $this->dependencyStorage;
    }

    /**
     * @param string $dependencyStorage
     */
    public function setDependencyStorage($dependencyStorage)
    {
        $this->dependencyStorage = $dependencyStorage;
    }
}

Function Calls

None

Variables

None

Stats

MD5 b4626462861c60369c8641f533dec754
Eval Count 0
Decode Time 102 ms