Skip to content

Commit fe02948

Browse files
committedJan 3, 2022
Add return types where possible.
1 parent d84e2a8 commit fe02948

File tree

1 file changed

+25
-22
lines changed

1 file changed

+25
-22
lines changed
 

‎src/ApiProblem.php

+25-22
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class ApiProblem implements \ArrayAccess, \JsonSerializable
133133
* @throws JsonParseException
134134
* Invalid JSON strings will result in a thrown exception.
135135
*/
136-
public static function fromJson(string $json) : self
136+
public static function fromJson(string $json): self
137137
{
138138
if (trim($json) === '') {
139139
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
157157
* @return array
158158
* A nested array corresponding to the XML element provided.
159159
*/
160-
protected static function xmlToArray(\SimpleXMLElement $element) : array
160+
protected static function xmlToArray(\SimpleXMLElement $element): array
161161
{
162162
$data = (array)$element;
163163
foreach ($data as $key => $value) {
@@ -177,7 +177,7 @@ protected static function xmlToArray(\SimpleXMLElement $element) : array
177177
* @return ApiProblem
178178
* A newly constructed problem object.
179179
*/
180-
public static function fromXml(string $string) : self
180+
public static function fromXml(string $string): self
181181
{
182182
$xml = new \SimpleXMLElement($string);
183183

@@ -194,7 +194,7 @@ public static function fromXml(string $string) : self
194194
* @return ApiProblem
195195
* A newly constructed problem object.
196196
*/
197-
public static function fromArray(array $input) : self
197+
public static function fromArray(array $input): self
198198
{
199199
$defaultInput = ['title' => null, 'type' => null, 'status' => null, 'detail' => null, 'instance' => null];
200200

@@ -324,7 +324,7 @@ public function __construct(string $title = '', string $type = 'about:blank')
324324
* @return string
325325
* The current title.
326326
*/
327-
public function getTitle() : string
327+
public function getTitle(): string
328328
{
329329
return $this->title;
330330
}
@@ -337,7 +337,7 @@ public function getTitle() : string
337337
* @return ApiProblem
338338
* The invoked object.
339339
*/
340-
public function setTitle(string $title) : self
340+
public function setTitle(string $title): self
341341
{
342342
$this->title = $title;
343343
return $this;
@@ -349,7 +349,7 @@ public function setTitle(string $title) : self
349349
* @return string
350350
* The problem type URI of this problem.
351351
*/
352-
public function getType() : string
352+
public function getType(): string
353353
{
354354
return $this->type;
355355
}
@@ -362,7 +362,7 @@ public function getType() : string
362362
* @return ApiProblem
363363
* The invoked object.
364364
*/
365-
public function setType(string $type) : self
365+
public function setType(string $type): self
366366
{
367367
$this->type = $type;
368368
return $this;
@@ -374,7 +374,7 @@ public function setType(string $type) : self
374374
* @return string
375375
* The detail of this problem.
376376
*/
377-
public function getDetail() : string
377+
public function getDetail(): string
378378
{
379379
return $this->detail;
380380
}
@@ -387,7 +387,7 @@ public function getDetail() : string
387387
* @return ApiProblem
388388
* The invoked object.
389389
*/
390-
public function setDetail(string $detail) : self
390+
public function setDetail(string $detail): self
391391
{
392392
$this->detail = $detail;
393393
return $this;
@@ -399,7 +399,7 @@ public function setDetail(string $detail) : self
399399
* @return string
400400
* The problem instance URI of this problem.
401401
*/
402-
public function getInstance() : string
402+
public function getInstance(): string
403403
{
404404
return $this->instance;
405405
}
@@ -414,7 +414,7 @@ public function getInstance() : string
414414
* @return ApiProblem
415415
* The invoked object.
416416
*/
417-
public function setInstance(string $instance) : self
417+
public function setInstance(string $instance): self
418418
{
419419
$this->instance = $instance;
420420
return $this;
@@ -426,7 +426,7 @@ public function setInstance(string $instance) : self
426426
* @return int
427427
* The current HTTP status code. If not set, it will return 0.
428428
*/
429-
public function getStatus() : int
429+
public function getStatus(): int
430430
{
431431
return $this->status;
432432
}
@@ -442,7 +442,7 @@ public function getStatus() : int
442442
* @return ApiProblem
443443
* The invoked object.
444444
*/
445-
public function setStatus(int $status) : self
445+
public function setStatus(int $status): self
446446
{
447447
$this->status = $status;
448448
return $this;
@@ -482,7 +482,7 @@ public function asJson(bool $pretty = false): string
482482
* @return string
483483
* An XML string representing this problem.
484484
*/
485-
public function asXml(bool $pretty = false)
485+
public function asXml(bool $pretty = false): string
486486
{
487487
$doc = new \SimpleXMLElement('<problem></problem>');
488488

@@ -506,7 +506,7 @@ public function asXml(bool $pretty = false)
506506
* @return array
507507
* The API problem represented as an array.
508508
*/
509-
public function asArray() : array
509+
public function asArray(): array
510510
{
511511
return $this->compile();
512512
}
@@ -517,7 +517,7 @@ public function asArray() : array
517517
* @return array
518518
* The API problem represented as an array for rendering.
519519
*/
520-
public function jsonSerialize()
520+
public function jsonSerialize(): array
521521
{
522522
return $this->compile();
523523
}
@@ -528,7 +528,7 @@ public function jsonSerialize()
528528
* @return array
529529
* This object, rendered to an array.
530530
*/
531-
protected function compile() : array
531+
protected function compile(): array
532532
{
533533
// Start with any extensions, since that's already an array.
534534
$response = $this->extensions;
@@ -560,7 +560,7 @@ protected function compile() : array
560560
* @param mixed $parent
561561
* Used for internal recursion only.
562562
*/
563-
protected function arrayToXml(array $data, \SimpleXMLElement $element, $parent = null)
563+
protected function arrayToXml(array $data, \SimpleXMLElement $element, $parent = null): void
564564
{
565565
foreach ($data as $key => $value) {
566566
if (is_array($value)) {
@@ -596,14 +596,17 @@ protected function arrayToXml(array $data, \SimpleXMLElement $element, $parent =
596596
/**
597597
* {@inheritdoc}
598598
*/
599-
public function offsetExists($offset)
599+
public function offsetExists($offset): bool
600600
{
601601
return array_key_exists($offset, $this->extensions);
602602
}
603603

604604
/**
605605
* {@inheritdoc}
606+
*
607+
* The proper return type here is `mixed`, which is only available as of 8.0.
606608
*/
609+
#[\ReturnTypeWillChange]
607610
public function &offsetGet($offset)
608611
{
609612
return $this->extensions[$offset];
@@ -612,15 +615,15 @@ public function &offsetGet($offset)
612615
/**
613616
* {@inheritdoc}
614617
*/
615-
public function offsetSet($offset, $value)
618+
public function offsetSet($offset, $value): void
616619
{
617620
$this->extensions[$offset] = $value;
618621
}
619622

620623
/**
621624
* {@inheritdoc}
622625
*/
623-
public function offsetUnset($offset)
626+
public function offsetUnset($offset): void
624627
{
625628
unset($this->extensions[$offset]);
626629
}

0 commit comments

Comments
 (0)
Please sign in to comment.