Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: Token.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\Neon; /** @internal */ final class Token { public const String = 1; public const Literal = 2; public const Char = 0; public const Comment = 3; public const Newline = 4; public const Whitespace = 5; /** @var string */ public $value; /** @var int|string */ public $type; public function __construct(string $value, $type) { $this->value = $value; $this->type = $type; } }