ACC SHELL

Path : /srv/www/vhosts/svj-u-leskavy/vendor/latte/latte/src/Latte/Runtime/
File Upload :
Current File : /srv/www/vhosts/svj-u-leskavy/vendor/latte/latte/src/Latte/Runtime/Html.php

<?php

/**
 * This file is part of the Nette Framework (http://nette.org)
 * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 */

namespace Latte\Runtime;

use Latte;


/**
 * HTML literal.
 *
 * @author     David Grudl
 */
class Html extends Latte\Object implements IHtmlString
{
	/** @var string */
	private $value;


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


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

}

ACC SHELL 2018