We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8339c66 commit db48ab3Copy full SHA for db48ab3
readme.md
@@ -43,4 +43,7 @@ $someJsonText = file_get_contents('...');
43
44
// You can pass args like in `json_decode`
45
(new Comment)->decode($someJsonText, $assoc = true, $depth = 512, $options = JSON_BIGINT_AS_STRING);
46
+
47
+// Or you can use static alias of decode:
48
+Comment::parse($json, true);
49
```
0 commit comments