You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewRuntimeException('The environment variable `BREF_RUNTIME` is not set, are you trying to use Bref v2 with Bref v3 layers? Make sure to follow the Bref documentation to use the right layers for your current Bref version.');
21
21
}
22
22
23
+
$runtimeClass = match ($runtime) {
24
+
'function' => 'Bref\FunctionRuntime\Main',
25
+
'fpm' => 'Bref\FpmRuntime\Main',
26
+
'console' => 'Bref\ConsoleRuntime\Main',
27
+
default => $runtime,
28
+
};
29
+
23
30
if (! class_exists($runtimeClass)) {
24
31
thrownewRuntimeException("Bref is not installed in your application (could not find the class \"$runtimeClass\" in Composer dependencies). Did you run \"composer require bref/bref\"?");
0 commit comments