File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- php : [8.2, 8.3]
17
+ php : [8.2, 8.3, 8.4 ]
18
18
19
19
steps :
20
20
- name : Checkout Code
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. This projec
5
5
6
6
## Unreleased
7
7
8
+ ## [ 3.0.1] - 2024-11-26
9
+
10
+ ### Fixed
11
+
12
+ - Remove deprecation notices on PHP 8.4.
13
+
8
14
## [ 3.0.0] - 2024-03-12
9
15
10
16
### Changed
Original file line number Diff line number Diff line change 13
13
failOnWarning =" true"
14
14
failOnDeprecation =" true"
15
15
failOnNotice =" true"
16
+ displayDetailsOnTestsThatTriggerDeprecations =" true"
16
17
>
17
18
<coverage />
18
19
<testsuites >
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ trait MakesJsonApiRequests
19
19
* the expected resource type.
20
20
* @return TestBuilder
21
21
*/
22
- protected function jsonApi (string $ expects = null ): TestBuilder
22
+ protected function jsonApi (? string $ expects = null ): TestBuilder
23
23
{
24
24
$ tester = new TestBuilder ($ this );
25
25
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public static function cast($response): self
41
41
* @param Response $response
42
42
* @param string|null $expectedType
43
43
*/
44
- public function __construct ($ response , string $ expectedType = null )
44
+ public function __construct ($ response , ? string $ expectedType = null )
45
45
{
46
46
parent ::__construct ($ response );
47
47
@@ -116,7 +116,7 @@ public function getLocation(): ?string
116
116
* @param string|null $pointer
117
117
* @return Document|mixed
118
118
*/
119
- public function jsonApi (string $ pointer = null )
119
+ public function jsonApi (? string $ pointer = null )
120
120
{
121
121
$ document = $ this ->getDocument ();
122
122
You can’t perform that action at this time.
0 commit comments