Skip to content

Commit

Permalink
[4-14] completeAction()
Browse files Browse the repository at this point in the history
  • Loading branch information
hidenorigoto committed Nov 4, 2015
1 parent 194297e commit bb3a90d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/lists/ch04/04-14.txt
@@ -0,0 +1,7 @@
/**
* @Route("/complete")
*/
public function completeAction()
{
return $this->render('Inquiry/complete.html.twig');
}
8 changes: 8 additions & 0 deletions src/AppBundle/Controller/InquiryController.php
Expand Up @@ -22,6 +22,14 @@ public function indexAction()
);
}

/**
* @Route("/complete")
*/
public function completeAction()
{
return $this->render('Inquiry/complete.html.twig');
}

private function createInquiryForm()
{
return $this->createFormBuilder()
Expand Down

0 comments on commit bb3a90d

Please sign in to comment.