Make sure all middlewares are only registered once

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-05-06 11:28:18 +02:00 committed by Backportbot
parent fc6f8077bd
commit 50827582b6
1 changed files with 3 additions and 0 deletions

View File

@ -299,6 +299,9 @@ class DIContainer extends SimpleContainer implements IAppContainer {
* @return boolean|null
*/
public function registerMiddleWare($middleWare) {
if (in_array($middleWare, $this->middleWares, true) !== false) {
return false;
}
$this->middleWares[] = $middleWare;
}