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\Util\Partial; trait TransformableTrait { /** * @var bool ..

Decoded Output download

<?php

namespace Phug\Util\Partial;

trait TransformableTrait
{
    /**
     * @var bool
     */
    protected $transformable = true;

    /**
     * Prevent the expression from being transformed by customization patterns.
     */
    public function preventFromTransformation()
    {
        $this->transformable = false;
    }

    /**
     * @return bool
     */
    public function isTransformationAllowed()
    {
        return $this->transformable;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Phug\Util\Partial;

trait TransformableTrait
{
    /**
     * @var bool
     */
    protected $transformable = true;

    /**
     * Prevent the expression from being transformed by customization patterns.
     */
    public function preventFromTransformation()
    {
        $this->transformable = false;
    }

    /**
     * @return bool
     */
    public function isTransformationAllowed()
    {
        return $this->transformable;
    }
}

Function Calls

None

Variables

None

Stats

MD5 a31e9f8a5835fbdddadecfa3da06259e
Eval Count 0
Decode Time 91 ms