2013-07-14 2 views
3

phpdocumentor 2를 사용하려고하지만 약간 이상하게 작동합니다.
Windows 7 x64 및 xampp을 실행 중입니다.
은 내가
내가 생성 된 문서에 대한 데이터를 확인하지 않는 경우 ... 확인했다하지만 난 그것을 실행하려고 할 때이phpdocumentor 2가 문서를 작성하지 않음

$ phpdoc -f C:\xampp\htdocs\tests\comments.class.php -t C:\xampp\htdocs\tests/build/api/ -i C:\xampp\htdocs\tests/build/api/ 
Collecting files .. OK 
Initializing parser .. OK 
Parsing files 
Parsing C:\xampp\htdocs\tests\comments.class.php 
    No summary for property $link 
    No summary for property $error 
    No summary for method grabComment() 
    No summary for method generateComments() 
    No summary for method generateReplies() 
    No summary for method generateForm() 
    No summary for method isValidMail() 
    No summary for method ip() 
Storing cache in "C:\xampp\htdocs\tests\build\api" .. OK 
Load cache               .. 0.003s 
Preparing template "responsive-twig"         .. 0.054s 
Preparing 15 transformations           .. 0.000s 
Build "elements" index            .. 0.000s 
Replace textual FQCNs with object aliases       .. 0.001s 
Build "packages" index            .. 0.002s 
Build "namespaces" index and add namespaces to "elements"   .. 0.000s 
Transform analyzed project into artifacts       .. 2.961s 
Analyze results and write report to log        .. 0.000s 

을 표시하고 그냥 중지 설치 배를 pear install phpdoc/phpDocumentor-beta
를 사용하여 설치 클래스가 표시됩니다
아무도이 문제가 있었나요?

+0

같은 문제, 동일한 플랫폼, 동일한 문제가 발생했습니다. 조사 중 ... – jek

+0

뭔가 찾았 으면 알려주세요. –

답변

0

불완전하고 베타 기본 템플릿 responsive-twig 때문일 것 같습니다. 오류가 없으므로 오류가보고되지 않았습니다. PHPDocumentor는 오류없이 정상적으로 완료됩니다.

템플릿을 responsive으로 변경하면 상황이 조금 개선됩니다. 당신은 당신의 phpdoc.xml에

<transformations> 
    <template name="responsive" /> 
</transformations> 

을 추가하거나 --template=responsive 명령 줄 옵션을 제공함으로써 그렇게 할 수 있습니다. 나는 다른 템플릿을 시도하지 않았다.

PHPDocumentor2 템플릿이 더 완전하고 기능이 풍부해질 때까지 결국 doxygen에 붙어 있습니다.