Corrections diverses
[zf2.biz/application_blanche.git] / module / Application / src / Application / Controller / IndexController.php
index 1c547c5..0062914 100644 (file)
@@ -1,4 +1,11 @@
 <?php
+/**
+ * Zend Framework (http://framework.zend.com/)
+ *
+ * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license   http://framework.zend.com/license/new-bsd New BSD License
+ */
 
 namespace Application\Controller;
 
@@ -11,4 +18,11 @@ class IndexController extends AbstractActionController
     {
         return new ViewModel();
     }
+    
+    public function testAction()
+    {
+        return array(
+            'name' => 'test: ajout action',
+        );
+    }
 }