Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: Literal.php
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\PhpGenerator; /** * PHP literal value. */ class Literal { /** @var string */ private $value; /** @var ?array */ private $args; public function __construct(string $value, ?array $args = null) { $this->value = $value; $this->args = $args; } public function __toString(): string { return $this->formatWith(new Dumper); } /** @internal */ public function formatWith(Dumper $dumper): string { return $this->args === null ? $this->value : $dumper->format($this->value, ...$this->args); } }