public/index.php line 13

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. /**
  4.  * Para calcular el tiempo de carga de las páginas (utilizando el EventSubscriber/TimeLoadSubscriber.php)...
  5.  */
  6. $time microtime();
  7. $time explode(' '$time);
  8. $time $time[1] + $time[0];
  9. $start_apunts $time;
  10. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  11. return function (array $context) {
  12.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  13. };