Make sure all middlewares are only registered once
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0877a2e627
commit
471827cb31
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue