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.
我正在使用 phpDocumentor
phpDocumentor 版本 2.0.0a10`
并有几个abstract我正在记录的课程。该文档似乎包括那些abstract classes 但不包括abstract. 我通常会大量记录抽象方法来解释合同以及我对如何在不同用例中实现它的愿景。我在 phpdoc 中缺少的设置会强制它记录这些吗?
abstract
abstract class
这就是您的抽象类在适当的 docblock 下的外观。
/** * login method * * Abstract method that must be implemented when * sub-classing this class. * * @access public * @return boolean */ abstract public function login($user, $password);