Skip to content

Instantly share code, notes, and snippets.

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 takahashi-h5/0caf20df87a5f5e469b5151ca5357750 to your computer and use it in GitHub Desktop.
Save takahashi-h5/0caf20df87a5f5e469b5151ca5357750 to your computer and use it in GitHub Desktop.
<?php
$router = $di->getRouter();
// V1Controllerでグルーピング
$api = new \Phalcon\Mvc\Router\Group([
'controller' => 'v1'
]);
$api->addGet('', ['action' => 'index']); // GETメソッドのみ、indexActionメソッド実行
$router->mount($api);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment