File tree 6 files changed +12
-7
lines changed
6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Tests
2
2
3
3
on :
4
4
push :
5
- branches : [ main, develop ]
5
+ branches : [ main, develop, 4.x ]
6
6
pull_request :
7
- branches : [ main, develop ]
7
+ branches : [ main, develop, 4.x ]
8
8
9
9
jobs :
10
10
build :
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ All notable changes to this project will be documented in this file. This projec
12
12
- ** BREAKING** : [ #21 ] ( https://github.com/laravel-json-api/core/pull/21 ) The ` Authorizer ` contract now allows all methods
13
13
to return a ` bool ` or an Illuminate authorization response.
14
14
15
+ ## [ 4.3.2] - 2024-11-30
16
+
17
+ ### Fixed
18
+
19
+ - Remove more PHP 8.4 deprecation notices.
20
+
15
21
## [ 4.3.1] - 2024-11-29
16
22
17
23
### Fixed
Original file line number Diff line number Diff line change 25
25
"require" : {
26
26
"php" : " ^8.2" ,
27
27
"ext-json" : " *" ,
28
- "illuminate/auth" : " ^11.33 " ,
28
+ "illuminate/auth" : " ^11.0 " ,
29
29
"illuminate/contracts" : " ^11.0" ,
30
30
"illuminate/http" : " ^11.0" ,
31
31
"illuminate/support" : " ^11.0"
Original file line number Diff line number Diff line change 19
19
20
20
class ErrorSource implements Serializable
21
21
{
22
-
23
22
use Concerns \Serializable;
24
23
25
24
/**
@@ -71,7 +70,7 @@ public static function fromArray(array $source): self
71
70
* @param string|null $pointer
72
71
* @param string|null $parameter
73
72
*/
74
- public function __construct (string $ pointer = null , string $ parameter = null )
73
+ public function __construct (? string $ pointer = null , ? string $ parameter = null )
75
74
{
76
75
$ this ->pointer = $ pointer ;
77
76
$ this ->parameter = $ parameter ;
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public function route(): Route
63
63
* @param string|null $name
64
64
* @return Server
65
65
*/
66
- public function server (string $ name = null ): Server
66
+ public function server (? string $ name = null ): Server
67
67
{
68
68
if (is_string ($ name )) {
69
69
return $ this ->servers ()->server ($ name );
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ public function uriType(): string
223
223
/**
224
224
* @inheritDoc
225
225
*/
226
- public function url ($ extra = [], bool $ secure = null ): string
226
+ public function url ($ extra = [], ? bool $ secure = null ): string
227
227
{
228
228
$ extra = Arr::wrap ($ extra );
229
229
You can’t perform that action at this time.
0 commit comments