sathyashrayan

IndexController.php

Jul 18th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //Test\ModuleOne\Controller\IndexController.php
  2. <?php
  3. namespace Test\ModuleOne\Controller;
  4.  
  5. use Zend\Mvc\Controller\AbstractActionController;
  6. use Zend\View\Model\ViewModel;
  7.  
  8. class IndexController extends AbstractActionController
  9. {
  10. public function indexAction()
  11. {
  12. echo "test";
  13. }
  14.  
  15. public function addAction()
  16. {
  17. }
  18. }
Add Comment
Please, Sign In to add comment