We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d180c05 commit 76cc76dCopy full SHA for 76cc76d
1 file changed
src/ApiVersion.php
@@ -19,7 +19,9 @@ class ApiVersion
19
/** @var string */
20
public const APRIL_2023 = "2023-04";
21
22
- public const LATEST = self::APRIL_2023;
+ public const JULY_2023 = "2023-07";
23
+ /** @var string */
24
+ public const LATEST = self::JULY_2023;
25
26
private static $ALL_VERSIONS = [
27
self::UNSTABLE,
@@ -28,6 +30,7 @@ class ApiVersion
28
30
self::OCTOBER_2022,
29
31
self::JANUARY_2023,
32
self::APRIL_2023,
33
+ self::JULY_2023,
34
];
35
36
public static function isValid(string $version): bool
0 commit comments