サンプルファイルを文書化しようとしています:
/**
* ElasticSearch Library
*
* Intended to do some cool stuff
*
*
* @author cmvr
* @subpackage elasticSearch
* @copyright free to use
* @license http://www.gnu.org/copyleft/gpl.html Freely available under GPL
*/
namespace Libs;
/**
* This is the main class of elastic search
*/
class elasticSearch {
protected $dataConnection;
/**
* elastic search setup data connection
* @return boolean
*/
public function setupDataConnection($dataString) {
return true;
}
}
私はCLIで実行しています:
phpdoc -f ../../app/libraries/elasticSearch.php -t ../../newDocs
正常に動作していますが、ここで html 出力を表示しているとき:
newDocs/files/elasticSearch.html
クラスとメソッド setupDataConnection はまったく文書化されていません。
これは私が見る画面です:
誰が私が間違っているのか説明できますか?