1 parent de63e0f commit 0c57e20Copy full SHA for 0c57e20
2 files changed
composer.json
@@ -1,6 +1,6 @@
1
{
2
"name": "communitydragon/phizz",
3
- "version": "0.5.1",
+ "version": "0.5.2",
4
"description": "An auto-generated PHP library for Riot API",
5
"keywords": [
6
"communitydragon",
src/Retry.php
@@ -26,4 +26,9 @@ public static function fixed(int $seconds = 2): self
26
27
return new self('fixed', $seconds);
28
}
29
+
30
+ public static function __set_state(array $array): self
31
+ {
32
+ return new self($array['strategy'], $array['value']);
33
+ }
34
0 commit comments