Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.8] Document facade root service resolving breaking change #4544

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ Update your `laravel/framework` dependency to `5.8.*` in your `composer.json` fi

Of course, don't forget to examine any 3rd party packages consumed by your application and verify you are using the proper version for Laravel 5.8 support.

### Facade

#### Facade root service resolving

**Likelihood Of Impact: Low**

The `getFacadeAccessor` method [can now return only the string value representing the identifier/alias of the service](https://github.com/laravel/framework/pull/25525). If you have a facade in your project or package whose `getFacadeAccessor` method returns an object, you should change it so that a string is returned.

### Routing

#### The `UrlGenerator` Contract
Expand Down