nette / bootstrap

🅱 The simple way to configure and bootstrap your Nette application.
https://doc.nette.org/bootstrap
Other
663 stars 36 forks source link

Configurator: added failing test for overwriting parameters #46

Closed janedbal closed 8 years ago

janedbal commented 8 years ago

See #45.

dg commented 8 years ago

It can be solved by altering addParameters method:

    public function addParameters(array $params)
    {
        return $this->addConfig(['parameters' => $params]);
    }

But it is BC break.

dg commented 8 years ago

IMHO