Skip to content

Instantly share code, notes, and snippets.

@EvanDotPro
Created November 12, 2011 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EvanDotPro/44438ebab645a7d06a0d to your computer and use it in GitHub Desktop.
Save EvanDotPro/44438ebab645a7d06a0d to your computer and use it in GitHub Desktop.
/foo
- check for 'foo' DI alias
- Foo\Controller\IndexController::indexAction()
- Application\Controller\FooController::indexAction()
/foo-bar
- check for 'foo-bar' DI alias
- FooBar\Controller\IndexController::indexAction()
- Application\Controller\FooBarController::indexAction()
/foo/bar
- check for 'foo' DI alias
- Foo\Controller\BarController::indexAction()
- Application\Controller\FooController::barAction()
/foo/bar/baz
- check for 'foo' DI alias
- Foo\Controller\BarController::bazAction()
@icanhazstring
Copy link

/
  - Application\Controller\IndexController::indexAction() # if Application is default namespace

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment