Corrections diverses
[zf2.biz/galerie.git] / module / Auth / src / Auth / Controller / IndexController.php
diff --git a/module/Auth/src/Auth/Controller/IndexController.php b/module/Auth/src/Auth/Controller/IndexController.php
new file mode 100644 (file)
index 0000000..bef5231
--- /dev/null
@@ -0,0 +1,21 @@
+<?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 Auth\Controller;
+
+use Zend\Mvc\Controller\AbstractActionController;
+
+
+class IndexController extends AbstractActionController
+{
+    public function indexAction()
+    {
+        return array();
+    }
+}