File: index.php

package info (click to toggle)
php-nette 2.4-20160731-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,208 kB
  • ctags: 7,552
  • sloc: php: 31,410; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
<?php

// let bootstrap create Dependency Injection container
$container = require __DIR__ . '/../app/bootstrap.php';

// run application
$container->getByType(Nette\Application\Application::class)
	->run();