Skip to content

Commit

Permalink
Update Bootstrap.php
Browse files Browse the repository at this point in the history
  • Loading branch information
accgit committed Jul 24, 2024
1 parent 3482832 commit b8735ff
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Bootstrap.php
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
<?php

declare(strict_types=1);


class Bootstrap
{
public static function boot(): \Nette\Bootstrap\Configurator
{
$app = new \Nette\Bootstrap\Configurator();
$app->setDebugMode(true);
$app->setTempDirectory(__DIR__ . '/');
$app->addConfig(__DIR__ . '/config.neon');
return $app;
}
}

0 comments on commit b8735ff

Please sign in to comment.