Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/ApiProblem.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public function getTitle(): string
*
* @param string $title
* The title to set.
* @return ApiProblem
* @return $this
* The invoked object.
*/
public function setTitle(string $title): self
Expand All @@ -356,7 +356,7 @@ public function getType(): string
*
* @param string $type
* The resolvable problem type URI of this problem.
* @return ApiProblem
* @return $this
* The invoked object.
*/
public function setType(string $type): self
Expand All @@ -381,7 +381,7 @@ public function getDetail(): string
*
* @param string $detail
* The human-readable detail string about this problem.
* @return ApiProblem
* @return $this
* The invoked object.
*/
public function setDetail(string $detail): self
Expand All @@ -408,7 +408,7 @@ public function getInstance(): string
* An absolute URI that uniquely identifies this problem. It MAY link to
* further information about the error, but that is not required.
*
* @return ApiProblem
* @return $this
* The invoked object.
*/
public function setInstance(string $instance): self
Expand Down Expand Up @@ -436,7 +436,7 @@ public function getStatus(): int
*
* @param int $status
* A valid HTTP status code.
* @return ApiProblem
* @return $this
* The invoked object.
*/
public function setStatus(int $status): self
Expand Down