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 Lab1521\NeatyHTML; trait Overrides { /** * Custom tag overrides ..

Decoded Output download

<?php
namespace Lab1521\NeatyHTML;

trait Overrides
{
    /**
     * Custom tag overrides to allow blocked tags to display.
     *
     * @param array $overrides Collection of tag overrides
     *
     * @return array
     */
    public function tagOverrides($overrides = [])
    {
        return Config::settings('tagOverrides', $overrides);
    }

    /**
     * Blocked tags to delete from document.
     *
     * @param array $tags Collection of tags
     *
     * @return array
     */
    public function blockedTags($tags = [])
    {
        return Config::settings('tags', $tags);
    }

    /**
     * Blocked tag attributes to delete from document.
     *
     * @param array $attributes Collection of tag attributes
     *
     * @return array
     */
    public function blockedAttributes($attributes = [])
    {
        return Config::settings('attr', $attributes);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
namespace Lab1521\NeatyHTML;

trait Overrides
{
    /**
     * Custom tag overrides to allow blocked tags to display.
     *
     * @param array $overrides Collection of tag overrides
     *
     * @return array
     */
    public function tagOverrides($overrides = [])
    {
        return Config::settings('tagOverrides', $overrides);
    }

    /**
     * Blocked tags to delete from document.
     *
     * @param array $tags Collection of tags
     *
     * @return array
     */
    public function blockedTags($tags = [])
    {
        return Config::settings('tags', $tags);
    }

    /**
     * Blocked tag attributes to delete from document.
     *
     * @param array $attributes Collection of tag attributes
     *
     * @return array
     */
    public function blockedAttributes($attributes = [])
    {
        return Config::settings('attr', $attributes);
    }
}

Function Calls

None

Variables

None

Stats

MD5 c3629ecd64198d6062bc94e8c3964b94
Eval Count 0
Decode Time 84 ms