소스 검색

[ZF-11530] Zend_Tool

- Fixed typo in documentation.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24259 44c647ce-9c0f-0410-b52a-842ac1e357ba
ramon 14 년 전
부모
커밋
6169c04127
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      documentation/manual/en/module_specs/Zend_Tool-Extending.xml

+ 1 - 1
documentation/manual/en/module_specs/Zend_Tool-Extending.xml

@@ -641,7 +641,7 @@ class My_Component_HelloProvider
         $nameResponse = $this->_registry
                              ->getClient()
                              ->promptInteractiveInput("Whats your name?");
-        $name = $name->getContent();
+        $name = $nameResponse->getContent();
 
         echo 'Hello' . $name . ', from my provider!';
     }