Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ArrayNode.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\Node; use Nette\Neon\Node; /** @internal */ abstract class ArrayNode extends Node { /** @var ArrayItemNode[] */ public $items = []; /** @return mixed[] */ public function toValue(): array { return ArrayItemNode::itemsToArray($this->items); } public function &getIterator(): \Generator { foreach ($this->items as &$item) { yield $item; } } }