File tree 2 files changed +15
-2
lines changed 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes for 6.x
2
2
3
- ## [ Unreleased] ( https://github.com/laravel/framework/compare/v6.20.13...6.x )
3
+ ## [ Unreleased] ( https://github.com/laravel/framework/compare/v6.20.15...6.x )
4
+
5
+
6
+ ## [ v6.20.15 (2021-01-26)] ( https://github.com/laravel/framework/compare/v6.20.14...v6.20.15 )
7
+
8
+ ### Changed
9
+ - Pipe new through render and report exception methods ([ #36037 ] ( https://github.com/laravel/framework/pull/36037 ) )
10
+
11
+
12
+ ## [ v6.20.14 (2021-01-21)] ( https://github.com/laravel/framework/compare/v6.20.13...v6.20.14 )
13
+
14
+ ### Fixed
15
+ - Fixed type error in ` Illuminate\Http\Concerns\InteractsWithContentTypes::isJson() ` ([ #35956 ] ( https://github.com/laravel/framework/pull/35956 ) )
16
+- Limit expected bindings ([ #35972 ] ( https://github.com/laravel/framework/pull/35972 ) , [ 006873d] ( https://github.com/laravel/framework/commit/006873df411d28bfd03fea5e7f91a2afe3918498 ) )
4
17
5
18
6
19
## [ v6.20.13 (2021-01-19)] ( https://github.com/laravel/framework/compare/v6.20.12...v6.20.13 )
Original file line number Diff line number Diff line change @@ -494,7 +494,7 @@ public static function currentPathResolver(Closure $resolver)
494
494
public static function resolveCurrentPage ($ pageName = 'page ' , $ default = 1 )
495
495
{
496
496
if (isset (static ::$ currentPageResolver )) {
497
- return call_user_func (static ::$ currentPageResolver , $ pageName );
497
+ return ( int ) call_user_func (static ::$ currentPageResolver , $ pageName );
498
498
}
499
499
500
500
return $ default ;
You can’t perform that action at this time.
0 commit comments