@@ -141,12 +141,12 @@ public function add(ErrorInterface $error): self
141
141
*/
142
142
public function addDataError (
143
143
string $ title ,
144
- string $ detail = null ,
145
- string $ status = null ,
144
+ ? string $ detail = null ,
145
+ ? string $ status = null ,
146
146
$ idx = null ,
147
- LinkInterface $ aboutLink = null ,
147
+ ? LinkInterface $ aboutLink = null ,
148
148
?iterable $ typeLinks = null ,
149
- string $ code = null ,
149
+ ? string $ code = null ,
150
150
bool $ hasMeta = false ,
151
151
$ meta = null
152
152
): self {
@@ -181,12 +181,12 @@ public function addDataError(
181
181
*/
182
182
public function addDataTypeError (
183
183
string $ title ,
184
- string $ detail = null ,
185
- string $ status = null ,
184
+ ? string $ detail = null ,
185
+ ? string $ status = null ,
186
186
$ idx = null ,
187
- LinkInterface $ aboutLink = null ,
187
+ ? LinkInterface $ aboutLink = null ,
188
188
?iterable $ typeLinks = null ,
189
- string $ code = null ,
189
+ ? string $ code = null ,
190
190
bool $ hasMeta = false ,
191
191
$ meta = null
192
192
): self {
@@ -221,12 +221,12 @@ public function addDataTypeError(
221
221
*/
222
222
public function addDataIdError (
223
223
string $ title ,
224
- string $ detail = null ,
225
- string $ status = null ,
224
+ ? string $ detail = null ,
225
+ ? string $ status = null ,
226
226
$ idx = null ,
227
- LinkInterface $ aboutLink = null ,
227
+ ? LinkInterface $ aboutLink = null ,
228
228
?iterable $ typeLinks = null ,
229
- string $ code = null ,
229
+ ? string $ code = null ,
230
230
bool $ hasMeta = false ,
231
231
$ meta = null
232
232
): self {
@@ -261,12 +261,12 @@ public function addDataIdError(
261
261
*/
262
262
public function addAttributesError (
263
263
string $ title ,
264
- string $ detail = null ,
265
- string $ status = null ,
264
+ ? string $ detail = null ,
265
+ ? string $ status = null ,
266
266
$ idx = null ,
267
- LinkInterface $ aboutLink = null ,
267
+ ? LinkInterface $ aboutLink = null ,
268
268
?iterable $ typeLinks = null ,
269
- string $ code = null ,
269
+ ? string $ code = null ,
270
270
bool $ hasMeta = false ,
271
271
$ meta = null
272
272
): self {
@@ -305,12 +305,12 @@ public function addAttributesError(
305
305
public function addDataAttributeError (
306
306
$ name ,
307
307
string $ title ,
308
- string $ detail = null ,
309
- string $ status = null ,
308
+ ? string $ detail = null ,
309
+ ? string $ status = null ,
310
310
$ idx = null ,
311
- LinkInterface $ aboutLink = null ,
311
+ ? LinkInterface $ aboutLink = null ,
312
312
?iterable $ typeLinks = null ,
313
- string $ code = null ,
313
+ ? string $ code = null ,
314
314
bool $ hasMeta = false ,
315
315
$ meta = null
316
316
): self {
@@ -345,12 +345,12 @@ public function addDataAttributeError(
345
345
*/
346
346
public function addRelationshipsError (
347
347
string $ title ,
348
- string $ detail = null ,
349
- string $ status = null ,
348
+ ? string $ detail = null ,
349
+ ? string $ status = null ,
350
350
$ idx = null ,
351
- LinkInterface $ aboutLink = null ,
351
+ ? LinkInterface $ aboutLink = null ,
352
352
?iterable $ typeLinks = null ,
353
- string $ code = null ,
353
+ ? string $ code = null ,
354
354
bool $ hasMeta = false ,
355
355
$ meta = null
356
356
): self {
@@ -389,12 +389,12 @@ public function addRelationshipsError(
389
389
public function addRelationshipError (
390
390
$ name ,
391
391
string $ title ,
392
- string $ detail = null ,
393
- string $ status = null ,
392
+ ? string $ detail = null ,
393
+ ? string $ status = null ,
394
394
$ idx = null ,
395
- LinkInterface $ aboutLink = null ,
395
+ ? LinkInterface $ aboutLink = null ,
396
396
?iterable $ typeLinks = null ,
397
- string $ code = null ,
397
+ ? string $ code = null ,
398
398
bool $ hasMeta = false ,
399
399
$ meta = null
400
400
): self {
@@ -433,12 +433,12 @@ public function addRelationshipError(
433
433
public function addRelationshipTypeError (
434
434
$ name ,
435
435
string $ title ,
436
- string $ detail = null ,
437
- string $ status = null ,
436
+ ? string $ detail = null ,
437
+ ? string $ status = null ,
438
438
$ idx = null ,
439
- LinkInterface $ aboutLink = null ,
439
+ ? LinkInterface $ aboutLink = null ,
440
440
?iterable $ typeLinks = null ,
441
- string $ code = null ,
441
+ ? string $ code = null ,
442
442
bool $ hasMeta = false ,
443
443
$ meta = null
444
444
): self {
@@ -477,12 +477,12 @@ public function addRelationshipTypeError(
477
477
public function addRelationshipIdError (
478
478
$ name ,
479
479
string $ title ,
480
- string $ detail = null ,
481
- string $ status = null ,
480
+ ? string $ detail = null ,
481
+ ? string $ status = null ,
482
482
$ idx = null ,
483
- LinkInterface $ aboutLink = null ,
483
+ ? LinkInterface $ aboutLink = null ,
484
484
?iterable $ typeLinks = null ,
485
- string $ code = null ,
485
+ ? string $ code = null ,
486
486
bool $ hasMeta = false ,
487
487
$ meta = null
488
488
): self {
@@ -521,12 +521,12 @@ public function addRelationshipIdError(
521
521
public function addQueryParameterError (
522
522
string $ name ,
523
523
string $ title ,
524
- string $ detail = null ,
525
- string $ status = null ,
524
+ ? string $ detail = null ,
525
+ ? string $ status = null ,
526
526
$ idx = null ,
527
- LinkInterface $ aboutLink = null ,
527
+ ? LinkInterface $ aboutLink = null ,
528
528
?iterable $ typeLinks = null ,
529
- string $ code = null ,
529
+ ? string $ code = null ,
530
530
bool $ hasMeta = false ,
531
531
$ meta = null
532
532
): self {
@@ -557,12 +557,12 @@ public function addQueryParameterError(
557
557
protected function addResourceError (
558
558
string $ title ,
559
559
string $ pointer ,
560
- string $ detail = null ,
561
- string $ status = null ,
560
+ ? string $ detail = null ,
561
+ ? string $ status = null ,
562
562
$ idx = null ,
563
- LinkInterface $ aboutLink = null ,
563
+ ? LinkInterface $ aboutLink = null ,
564
564
?iterable $ typeLinks = null ,
565
- string $ code = null ,
565
+ ? string $ code = null ,
566
566
bool $ hasMeta = false ,
567
567
$ meta = null
568
568
): self {
0 commit comments