sathyashrayan

earth IndexController.php

Mar 8th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. // module/hello/Earth/src/Earth/Controller/IndexController.php
  2. namespace hello\Earth\Controller;
  3.  
  4. use Zend\Mvc\Controller\AbstractActionController;
  5. use Zend\View\Model\ViewModel;
  6.  
  7. class IndexController extends AbstractActionController
  8. {
  9.     public function indexAction()
  10.     {
  11.         return new ViewModel(array(
  12.            'varName' => 'hello from vendor earth',
  13.          ));
  14.     }
  15. }
Add Comment
Please, Sign In to add comment