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 LoversOfBehat\TableExtension; /** * Class t..

Decoded Output download

<?php

declare(strict_types = 1);

namespace LoversOfBehat\TableExtension;

/**
 * Class that contains a HTML string.
 */
class HtmlContainer
{

    /**
     * The HTML.
     *
     * @var string
     */
    protected $html;

    /**
     * Constructs a new HtmlContainer object.
     *
     * @param string $html
     */
    public function __construct(string $html)
    {
        $this->setHtml($html);
    }

    /**
     * Returns the HTML.
     *
     * @return string
     */
    public function getHtml(): string
    {
        return $this->html;
    }

    /**
     * Sets the HTML.
     *
     * @param string $html
     */
    public function setHtml(string $html): void
    {
        $this->html = $html;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types = 1);

namespace LoversOfBehat\TableExtension;

/**
 * Class that contains a HTML string.
 */
class HtmlContainer
{

    /**
     * The HTML.
     *
     * @var string
     */
    protected $html;

    /**
     * Constructs a new HtmlContainer object.
     *
     * @param string $html
     */
    public function __construct(string $html)
    {
        $this->setHtml($html);
    }

    /**
     * Returns the HTML.
     *
     * @return string
     */
    public function getHtml(): string
    {
        return $this->html;
    }

    /**
     * Sets the HTML.
     *
     * @param string $html
     */
    public function setHtml(string $html): void
    {
        $this->html = $html;
    }
}

Function Calls

None

Variables

None

Stats

MD5 5324534d95daa17b507e9a3030885e29
Eval Count 0
Decode Time 95 ms