Module Galerie: Rajout du contrôleur et des vues
[zf2.biz/galerie.git] / module / Galerie / src / Galerie / Controller / IndexController.php
1 <?php
2
3 namespace Galerie\Controller; 
4
5 use Zend\Mvc\Controller\AbstractActionController; 
6
7
8 class IndexController extends AbstractActionController 
9
10     public function indexAction() 
11     { 
12         return array(); 
13     } 
14
15     public function editAction() 
16     { 
17         return array(); 
18     } 
19
20     public function delAction() 
21     { 
22         return array(); 
23     } 
24
25     public function viewAction() 
26     { 
27         return array(); 
28     } 
29