This repository has been archived by the owner on Jan 8, 2020. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure run() always returns Application instance
- Some paths through `Application::run()` would call `return $this->completeRequest($event)`; this particular method was returning a response object, which meant that `send()` was resulting in a double-render. The main `run()` routine typically returns the Application instance, where `send()` is a no-op, and thus no double-render can occur. - The workaround until this is merged and released is to remove the call to `->send()` in your `public/index.php`.
- Loading branch information