Skip to content

Commit 6bad852

Browse files
committed
formatting
1 parent 7312f33 commit 6bad852

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

upgrade.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<a name="upgrade-5.8.0"></a>
66
## Upgrading To 5.8.0 From 5.7
77

8-
#### Estimated Upgrade Time: TBD
8+
#### Estimated Upgrade Time: 10 Minutes
99

1010
> {note} We attempt to document every possible breaking change. Since some of these breaking changes are in obscure parts of the framework only a portion of these changes may actually affect your application.
1111
@@ -19,7 +19,7 @@ Of course, don't forget to examine any 3rd party packages consumed by your appli
1919

2020
#### The `environment` Method
2121

22-
**Likelihood Of Impact: Low**
22+
**Likelihood Of Impact: Very Low**
2323

2424
The `environment` method signature of the `Illuminate/Contracts/Foundation/Application` class [has changed](https://github.com/laravel/framework/pull/26296). If you are implementing this contract in your application, you should update the method signature:
2525

@@ -30,14 +30,14 @@ The `environment` method signature of the `Illuminate/Contracts/Foundation/Appli
3030
* @return string|bool
3131
*/
3232
public function environment(...$environments);
33-
33+
3434
### Collections
3535

3636
#### The `firstWhere` Method
3737

3838
**Likelihood Of Impact: Very Low**
3939

40-
The `firstWhere` method signature [has changed](https://github.com/laravel/framework/pull/26261) to match the `where` method signature. If you are overriding this method, you should update the method signature to match its parent:
40+
The `firstWhere` method signature [has changed](https://github.com/laravel/framework/pull/26261) to match the `where` method's signature. If you are overriding this method, you should update the method signature to match its parent:
4141

4242
/**
4343
* Get the first item by the given key value pair.
@@ -48,7 +48,7 @@ The `firstWhere` method signature [has changed](https://github.com/laravel/frame
4848
* @return mixed
4949
*/
5050
public function firstWhere($key, $operator = null, $value = null);
51-
51+
5252
### Database
5353

5454
#### Unquoted MySQL JSON Values

0 commit comments

Comments
 (0)