<?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');
$app->add(new InitCommand());
$app->add(new RestoreCommand());
-
-return $app;
\ No newline at end of file
+return $app;