Skip to content

Instantly share code, notes, and snippets.

@Loschcode
Last active August 29, 2015 13:56
Show Gist options
  • Save Loschcode/9212628 to your computer and use it in GitHub Desktop.
Save Loschcode/9212628 to your computer and use it in GitHub Desktop.
In your main di file :
<?php
/*
|--------------------------------------------------------------------------
| Router
|--------------------------------------------------------------------------
|
| We initialize the Phalcon router, it requires the routes and runs it
|
*/
$di->set('router', function() {
// Init router
$router = new Phalcon\Mvc\Router();
// Fetch routes from user
require(MY_FILE);
// Inject
return $router;
});
in MY_FILE (as said above in the require) :
<?php
$router->add('/', 'hello::index');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment