0
phpDocはカスタムタグをサポートしていますか? @untested
を使用して、まだテストされていないコードをマークしたいと思います。これはどうすればできますか?phpDocでカスタムタグを使用できますか?
/**
* Here comes the summary
*
* @todo this code has to be tested
*
* @return boolean Returns something
*/
function someFunction()
{
<...>
}
よう@todo
タグを使用していないか、この情報があなたのドキュメントに含まれてしたくない場合、あなたはこのようにインライン@internal
タグを使用することができますなぜ
Googleで検索しましたか? https://onomatopoeia.pinkgothic.com/article/extending-phpdocumentor-with-custom-tags – rokas
@rokas 2009年の記事に感謝します。 phpDocは、コードを入れたりコードを変更することなく、タグをサポートしていないようです。 –