@@ -133,7 +133,7 @@ class ApiProblem implements \ArrayAccess, \JsonSerializable
133
133
* @throws JsonParseException
134
134
* Invalid JSON strings will result in a thrown exception.
135
135
*/
136
- public static function fromJson (string $ json ) : self
136
+ public static function fromJson (string $ json ): self
137
137
{
138
138
if (trim ($ json ) === '' ) {
139
139
throw new JsonParseException ('An empty string is not a valid JSON value ' , JSON_ERROR_SYNTAX , null , $ json );
@@ -157,7 +157,7 @@ public static function fromJson(string $json) : self
157
157
* @return array
158
158
* A nested array corresponding to the XML element provided.
159
159
*/
160
- protected static function xmlToArray (\SimpleXMLElement $ element ) : array
160
+ protected static function xmlToArray (\SimpleXMLElement $ element ): array
161
161
{
162
162
$ data = (array )$ element ;
163
163
foreach ($ data as $ key => $ value ) {
@@ -177,7 +177,7 @@ protected static function xmlToArray(\SimpleXMLElement $element) : array
177
177
* @return ApiProblem
178
178
* A newly constructed problem object.
179
179
*/
180
- public static function fromXml (string $ string ) : self
180
+ public static function fromXml (string $ string ): self
181
181
{
182
182
$ xml = new \SimpleXMLElement ($ string );
183
183
@@ -194,7 +194,7 @@ public static function fromXml(string $string) : self
194
194
* @return ApiProblem
195
195
* A newly constructed problem object.
196
196
*/
197
- public static function fromArray (array $ input ) : self
197
+ public static function fromArray (array $ input ): self
198
198
{
199
199
$ defaultInput = ['title ' => null , 'type ' => null , 'status ' => null , 'detail ' => null , 'instance ' => null ];
200
200
@@ -324,7 +324,7 @@ public function __construct(string $title = '', string $type = 'about:blank')
324
324
* @return string
325
325
* The current title.
326
326
*/
327
- public function getTitle () : string
327
+ public function getTitle (): string
328
328
{
329
329
return $ this ->title ;
330
330
}
@@ -337,7 +337,7 @@ public function getTitle() : string
337
337
* @return ApiProblem
338
338
* The invoked object.
339
339
*/
340
- public function setTitle (string $ title ) : self
340
+ public function setTitle (string $ title ): self
341
341
{
342
342
$ this ->title = $ title ;
343
343
return $ this ;
@@ -349,7 +349,7 @@ public function setTitle(string $title) : self
349
349
* @return string
350
350
* The problem type URI of this problem.
351
351
*/
352
- public function getType () : string
352
+ public function getType (): string
353
353
{
354
354
return $ this ->type ;
355
355
}
@@ -362,7 +362,7 @@ public function getType() : string
362
362
* @return ApiProblem
363
363
* The invoked object.
364
364
*/
365
- public function setType (string $ type ) : self
365
+ public function setType (string $ type ): self
366
366
{
367
367
$ this ->type = $ type ;
368
368
return $ this ;
@@ -374,7 +374,7 @@ public function setType(string $type) : self
374
374
* @return string
375
375
* The detail of this problem.
376
376
*/
377
- public function getDetail () : string
377
+ public function getDetail (): string
378
378
{
379
379
return $ this ->detail ;
380
380
}
@@ -387,7 +387,7 @@ public function getDetail() : string
387
387
* @return ApiProblem
388
388
* The invoked object.
389
389
*/
390
- public function setDetail (string $ detail ) : self
390
+ public function setDetail (string $ detail ): self
391
391
{
392
392
$ this ->detail = $ detail ;
393
393
return $ this ;
@@ -399,7 +399,7 @@ public function setDetail(string $detail) : self
399
399
* @return string
400
400
* The problem instance URI of this problem.
401
401
*/
402
- public function getInstance () : string
402
+ public function getInstance (): string
403
403
{
404
404
return $ this ->instance ;
405
405
}
@@ -414,7 +414,7 @@ public function getInstance() : string
414
414
* @return ApiProblem
415
415
* The invoked object.
416
416
*/
417
- public function setInstance (string $ instance ) : self
417
+ public function setInstance (string $ instance ): self
418
418
{
419
419
$ this ->instance = $ instance ;
420
420
return $ this ;
@@ -426,7 +426,7 @@ public function setInstance(string $instance) : self
426
426
* @return int
427
427
* The current HTTP status code. If not set, it will return 0.
428
428
*/
429
- public function getStatus () : int
429
+ public function getStatus (): int
430
430
{
431
431
return $ this ->status ;
432
432
}
@@ -442,7 +442,7 @@ public function getStatus() : int
442
442
* @return ApiProblem
443
443
* The invoked object.
444
444
*/
445
- public function setStatus (int $ status ) : self
445
+ public function setStatus (int $ status ): self
446
446
{
447
447
$ this ->status = $ status ;
448
448
return $ this ;
@@ -482,7 +482,7 @@ public function asJson(bool $pretty = false): string
482
482
* @return string
483
483
* An XML string representing this problem.
484
484
*/
485
- public function asXml (bool $ pretty = false )
485
+ public function asXml (bool $ pretty = false ): string
486
486
{
487
487
$ doc = new \SimpleXMLElement ('<problem></problem> ' );
488
488
@@ -506,7 +506,7 @@ public function asXml(bool $pretty = false)
506
506
* @return array
507
507
* The API problem represented as an array.
508
508
*/
509
- public function asArray () : array
509
+ public function asArray (): array
510
510
{
511
511
return $ this ->compile ();
512
512
}
@@ -517,7 +517,7 @@ public function asArray() : array
517
517
* @return array
518
518
* The API problem represented as an array for rendering.
519
519
*/
520
- public function jsonSerialize ()
520
+ public function jsonSerialize (): array
521
521
{
522
522
return $ this ->compile ();
523
523
}
@@ -528,7 +528,7 @@ public function jsonSerialize()
528
528
* @return array
529
529
* This object, rendered to an array.
530
530
*/
531
- protected function compile () : array
531
+ protected function compile (): array
532
532
{
533
533
// Start with any extensions, since that's already an array.
534
534
$ response = $ this ->extensions ;
@@ -560,7 +560,7 @@ protected function compile() : array
560
560
* @param mixed $parent
561
561
* Used for internal recursion only.
562
562
*/
563
- protected function arrayToXml (array $ data , \SimpleXMLElement $ element , $ parent = null )
563
+ protected function arrayToXml (array $ data , \SimpleXMLElement $ element , $ parent = null ): void
564
564
{
565
565
foreach ($ data as $ key => $ value ) {
566
566
if (is_array ($ value )) {
@@ -596,14 +596,17 @@ protected function arrayToXml(array $data, \SimpleXMLElement $element, $parent =
596
596
/**
597
597
* {@inheritdoc}
598
598
*/
599
- public function offsetExists ($ offset )
599
+ public function offsetExists ($ offset ): bool
600
600
{
601
601
return array_key_exists ($ offset , $ this ->extensions );
602
602
}
603
603
604
604
/**
605
605
* {@inheritdoc}
606
+ *
607
+ * The proper return type here is `mixed`, which is only available as of 8.0.
606
608
*/
609
+ #[\ReturnTypeWillChange]
607
610
public function &offsetGet ($ offset )
608
611
{
609
612
return $ this ->extensions [$ offset ];
@@ -612,15 +615,15 @@ public function &offsetGet($offset)
612
615
/**
613
616
* {@inheritdoc}
614
617
*/
615
- public function offsetSet ($ offset , $ value )
618
+ public function offsetSet ($ offset , $ value ): void
616
619
{
617
620
$ this ->extensions [$ offset ] = $ value ;
618
621
}
619
622
620
623
/**
621
624
* {@inheritdoc}
622
625
*/
623
- public function offsetUnset ($ offset )
626
+ public function offsetUnset ($ offset ): void
624
627
{
625
628
unset($ this ->extensions [$ offset ]);
626
629
}
0 commit comments