Working view layer integration
[zf2.biz/galerie.git] / module / Application / src / Application / Controller / IndexController.php
1 <?php
2
3 namespace Application\Controller;
4
5 use Zend\Mvc\Controller\ActionController,
6     Zend\View\Model\ViewModel;
7
8 class IndexController extends ActionController
9 {
10     public function indexAction()
11     {
12         return new ViewModel();
13     }
14 }