You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: upgrade.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<aname="upgrade-5.8.0"></a>
6
6
## Upgrading To 5.8.0 From 5.7
7
7
8
-
#### Estimated Upgrade Time: TBD
8
+
#### Estimated Upgrade Time: 10 Minutes
9
9
10
10
> {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.
11
11
@@ -19,7 +19,7 @@ Of course, don't forget to examine any 3rd party packages consumed by your appli
19
19
20
20
#### The `environment` Method
21
21
22
-
**Likelihood Of Impact: Low**
22
+
**Likelihood Of Impact: Very Low**
23
23
24
24
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:
25
25
@@ -30,14 +30,14 @@ The `environment` method signature of the `Illuminate/Contracts/Foundation/Appli
30
30
* @return string|bool
31
31
*/
32
32
public function environment(...$environments);
33
-
33
+
34
34
### Collections
35
35
36
36
#### The `firstWhere` Method
37
37
38
38
**Likelihood Of Impact: Very Low**
39
39
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:
41
41
42
42
/**
43
43
* 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
48
48
* @return mixed
49
49
*/
50
50
public function firstWhere($key, $operator = null, $value = null);
0 commit comments