PSRで、クラスと名前空間に関するコメントをどこに置くべきかについては何も言いません。それはクラスまたは名前空間の最初の説明ですか? <?php
/**
* Some description about this class
*
* @author Mr. Anderson
* @since 06/09/17
* @package
*
*/
namespace MyName
私はLaravelプロジェクトでPHPDocを使用しようとしていますが、作曲家に手を差し伸べるのには少し問題があります。 私はcomposer require phpdocumentor/phpdocumentorを実行すると、次の受信: Problem 1
- Installation request for phpdocumentor/phpdocumentor ^2.9 -> sa
phpDocumentorをSymfony3と使いたいです。彼らは説明されているようにお互いに互換性がないからです。here私はpearを使ってphpDocumentorをインストールしました。 私のbuidl.xmlは、このように呼びます。 <target name="phpdoc" description="Generate API documentation using PHPDocumen
関数/メソッドがクラスをパラメータとして受け入れることを示すにはどうすればよいですか? PHPDocか型ヒントで十分でしょうが、どちらもそれを許しているようです。 ここで私はすでにこの関数にクラスを渡す方法を知ってる... /**
* @param $class class A reference to a class that will be used to do something
*/