You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
371 B

5 years ago
  1. <?php
  2. require __DIR__.'/../vendor/autoload.php';
  3. require __DIR__.'/../app/bootstrap.php';
  4. // add routes
  5. $app->route('GET /', array(new App\Controllers\PageController, 'indexAction'));
  6. $app->route('GET /@slug', array(new App\Controllers\PageController, 'getAction'));
  7. $app->route('GET /404', array(new App\Controllers\PageController, 'notFoundAction'));
  8. $app->start();