Path : /srv/www/vhosts/pk-dane/kliminvest/vendor/nette/php-generator/src/PhpGenerator/ |
Current File : /srv/www/vhosts/pk-dane/kliminvest/vendor/nette/php-generator/src/PhpGenerator/PhpLiteral.php |
<?php /** * This file is part of the Nette Framework (http://nette.org) * Copyright (c) 2004 David Grudl (http://davidgrudl.com) */ namespace Nette\PhpGenerator; use Nette; /** * PHP literal value. * * @author David Grudl */ class PhpLiteral { /** @var string */ private $value; public function __construct($value) { $this->value = (string) $value; } /** * @return string */ public function __toString() { return $this->value; } }