Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ConstantsExtension.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; /** * Constant definitions. */ final class ConstantsExtension extends Nette\DI\CompilerExtension { public function loadConfiguration() { foreach ($this->getConfig() as $name => $value) { $this->initialization->addBody('define(?, ?);', [$name, $value]); } } }