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 03e2720 commit 9ea8a5cCopy full SHA for 9ea8a5c
src/Kernel.php
@@ -8,12 +8,12 @@
8
9
$basedir = realpath(__DIR__.'/../');
10
if (!$basedir) {
11
- throw new \RuntimeException('Base path can not be resolved.');
+ throw new RuntimeException('Base path can not be resolved.');
12
}
13
14
require_once $basedir.'/vendor/autoload.php';
15
16
-return function () use ($basedir): \Micro\Framework\Kernel\KernelInterface {
+return function () use ($basedir): Micro\Framework\Kernel\KernelInterface {
17
$applicationConfiguration = new class($basedir) extends DefaultApplicationConfiguration {
18
private Dotenv $dotenv;
19
0 commit comments