Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ExtensionsExtension.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\DI\Extensions; use Nette; /** * Enables registration of other extensions in $config file */ final class ExtensionsExtension extends Nette\DI\CompilerExtension { public function getConfigSchema(): Nette\Schema\Schema { return Nette\Schema\Expect::arrayOf('string|Nette\DI\Definitions\Statement'); } public function loadConfiguration() { foreach ($this->getConfig() as $name => $class) { if (is_int($name)) { $name = null; } $args = []; if ($class instanceof Nette\DI\Definitions\Statement) { [$class, $args] = [$class->getEntity(), $class->arguments]; } if (!is_a($class, Nette\DI\CompilerExtension::class, true)) { throw new Nette\DI\InvalidConfigurationException(sprintf( "Extension '%s' not found or is not Nette\\DI\\CompilerExtension descendant.", $class )); } $this->compiler->addExtension($name, (new \ReflectionClass($class))->newInstanceArgs($args)); } } }