We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6928bb commit 1137615Copy full SHA for 1137615
src/Web/Documentation/Version.php
@@ -10,6 +10,7 @@ enum Version: string
10
11
case VERSION_1 = '1.x';
12
case VERSION_2 = '2.x';
13
+ case VERSION_3 = '3.x';
14
15
public static function default(): self
16
{
@@ -19,7 +20,7 @@ public static function default(): self
19
20
public function isNext(): bool
21
22
return match ($this) {
- // self::VERSION_3 => true,
23
+ self::VERSION_3 => true,
24
default => false,
25
};
26
}
@@ -29,6 +30,7 @@ public function getBranch(): string
29
30
31
self::VERSION_1 => '1.x',
32
self::VERSION_2 => 'main',
33
+ self::VERSION_3 => '3.x',
34
35
36
0 commit comments