public/index.php line 5

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. if($_SERVER['REMOTE_ADDR'] == '90.63.222.84')
  5. {
  6.     return function (array $context) {
  7.         return new Kernel($context['APP_DEV'], (bool) $context['APP_DEBUG']);
  8.     };
  9.     
  10. }
  11. else
  12. {
  13.     return function (array $context) {
  14.         return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  15.     };
  16.     
  17. }