Skip to content

Commit

Permalink
Fix: DocBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 11, 2022
1 parent d66ea30 commit d6982fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
final class Json
{
/**
* @param null|array<mixed>|bool|float|int|object|string $decoded
* @param null|array<int, mixed>|bool|float|int|object|string $decoded
*/
private function __construct(
private string $encoded,
Expand Down Expand Up @@ -76,7 +76,7 @@ public static function fromFile(string $file): self
/**
* Returns the decoded JSON value.
*
* @return null|array<mixed>|bool|float|int|object|string
* @return null|array<int, mixed>|bool|float|int|object|string
*/
public function decoded()
{
Expand Down

0 comments on commit d6982fc

Please sign in to comment.