Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: NameAware.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\Traits; use Nette; /** * @internal */ trait NameAware { /** @var string */ private $name; public function __construct(string $name) { if (!Nette\PhpGenerator\Helpers::isIdentifier($name)) { throw new Nette\InvalidArgumentException("Value '$name' is not valid name."); } $this->name = $name; } public function getName(): string { return $this->name; } /** * Returns clone with a different name. * @return static */ public function cloneWithName(string $name): self { $dolly = clone $this; $dolly->__construct($name); return $dolly; } }