]> BookStack Code Mirror - system-cli/blobdiff - src/app.php
Made a range of tweaks from testing
[system-cli] / src / app.php
index 0ff90cd2a1c7f5ba504e41a48649ffbcee0ca52f..e4cf57be9f89c4c2b68e6b1fdfe7e50252e2831c 100644 (file)
@@ -1,10 +1,11 @@
 <?php
+declare(strict_types=1);
 
+use Cli\Application;
 use Cli\Commands\BackupCommand;
 use Cli\Commands\InitCommand;
 use Cli\Commands\RestoreCommand;
 use Cli\Commands\UpdateCommand;
-use Symfony\Component\Console\Application;
 
 // Setup our CLI
 $app = new Application('bookstack-system');
@@ -15,5 +16,4 @@ $app->add(new UpdateCommand());
 $app->add(new InitCommand());
 $app->add(new RestoreCommand());
 
-
-return $app;
\ No newline at end of file
+return $app;