Преглед изворни кода

ZF-7903: fix _initRequest example

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20474 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew пре 16 година
родитељ
комит
c376259651

+ 1 - 1
documentation/manual/de/module_specs/Zend_Application-Examples.xml

@@ -58,7 +58,7 @@ resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
     <programlisting language="php"><![CDATA[
 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
 {
-    protected function _initRequest(array $options = array())
+    protected function _initRequest()
     {
         // Sicherstellen das eine Front Controller Instanz vorhanden ist
         // und diese holen

+ 1 - 1
documentation/manual/en/module_specs/Zend_Application-Examples.xml

@@ -56,7 +56,7 @@ resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
     <programlisting language="php"><![CDATA[
 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
 {
-    protected function _initRequest(array $options = array())
+    protected function _initRequest()
     {
         // Ensure front controller instance is present, and fetch it
         $this->bootstrap('FrontController');

+ 1 - 1
documentation/manual/fr/module_specs/Zend_Application-Examples.xml

@@ -54,7 +54,7 @@ resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
     <programlisting language="php"><![CDATA[
 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
 {
-    protected function _initRequest(array $options = array())
+    protected function _initRequest()
     {
         // Vérifie que le contrôleur frontal est bien présent, et le récupère
         $this->bootstrap('FrontController');

+ 1 - 1
documentation/manual/ja/module_specs/Zend_Application-Examples.xml

@@ -59,7 +59,7 @@ resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
     <programlisting language="php"><![CDATA[
 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
 {
-    protected function _initRequest(array $options = array())
+    protected function _initRequest()
     {
         // フロントコントローラ・インスタンスが存在することを確認して、取り込みます。
         $this->bootstrap('FrontController');