Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: EnumCase.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; use Nette; /** * Enum case. */ final class EnumCase { use Nette\SmartObject; use Traits\NameAware; use Traits\CommentAware; use Traits\AttributeAware; /** @var string|int|null */ private $value; /** @return static */ public function setValue($val): self { $this->value = $val; return $this; } public function getValue() { return $this->value; } }