Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@methodシグネチャの引数をphpDocでオプションとしてマークする方法はありますか?
このようなもの:
/* * @method bool alloc() alloc(int $filesize [, string &$result]) Allocates space for a file to be uploaded */
通常、オプションの引数は、argのデフォルト値がメソッドシグネチャにあるかどうかを確認することにより、phpDocumentorによって認識されます。そのため、あなたの例を使用して:
@method bool alloc() alloc(int $filesize, string &$result = '') Allocates space for ...