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 96fe0f9 commit 5772ef8Copy full SHA for 5772ef8
src/Enum/Runtime.php
@@ -23,6 +23,7 @@ class Runtime
23
public const PYTHON_3_7 = 'python3.7';
24
public const PYTHON_3_8 = 'python3.8';
25
public const RUBY_2_5 = 'ruby2.5';
26
+ public const RUBY_2_7 = 'ruby2.7';
27
28
public static function exists(string $value): bool
29
{
@@ -46,6 +47,7 @@ public static function exists(string $value): bool
46
47
self::PYTHON_3_7 => true,
48
self::PYTHON_3_8 => true,
49
self::RUBY_2_5 => true,
50
+ self::RUBY_2_7 => true,
51
];
52
53
return isset($values[$value]);
0 commit comments