Skip to content
Snippets Groups Projects
Select Git revision
  • ecae87c838a0569597bac960ed804921a295dcee
  • master default protected
  • 133-fail2ban-page
  • reorganisation
  • 16-maintenace-service
  • 11-fail2ban
  • 6-monit-update
  • 7-dolibarr-fail2ban
  • 6-surveillance-interne-des-serveur
  • test-glpi
  • 2-migrate-to-phpfpm
  • jessie
  • github
13 results

installMySQL.sh

Blame
  • console-loader.php 361 B
    <?php declare(strict_types = 1);
    
    use App\Kernel;
    use Symfony\Bundle\FrameworkBundle\Console\Application;
    use Symfony\Component\Dotenv\Dotenv;
    
    require dirname(__DIR__) . '/../vendor/autoload.php';
    
    (new Dotenv())->bootEnv(dirname(__DIR__) . '/../.env');
    $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
    return new Application($kernel);