Skip to content

Commit

Permalink
fix application flush (#35482)
Browse files Browse the repository at this point in the history
  • Loading branch information
imanghafoori1 committed Dec 4, 2020
1 parent b89363b commit b09f778
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Illuminate/Foundation/Application.php
Expand Up @@ -1311,8 +1311,11 @@ public function flush()
$this->serviceProviders = [];
$this->resolvingCallbacks = [];
$this->terminatingCallbacks = [];
$this->beforeResolvingCallbacks = [];
$this->afterResolvingCallbacks = [];
$this->globalBeforeResolvingCallbacks = [];
$this->globalResolvingCallbacks = [];
$this->globalAfterResolvingCallbacks = [];
}

/**
Expand Down

0 comments on commit b09f778

Please sign in to comment.