PhpDocs:可以在参数描述中链接方法吗?

时间:2016-12-23 14:34:38

标签: php documentation phpdoc phpdocumentor2

是否可以链接到另一个方法/类/属性/ etc。我的项目内嵌@deprecated标记内部?像这样:

/**
 * Method description
 * @deprecated 1.0 Reason for deprecation, use {@link newMethod()} instead!
 * @param string $str
 * @param string|null $str2
 * @return bool
*/
public function method($str, $str2) {
    // TODO: Code...
}

...

1 个答案:

答案 0 :(得分:12)

根据PHPdoc.org,您可以使用@see标记。

 /**
 * @see http://example.com/my/bar Documentation of Foo.
 * @see MyClass::$items           For the property whose items are counted.
 * @see MyClass::setItems()       To set the items for this collection.
 *
 * @return integer Indicates the number of items.
 */
function count()
{
     <...>
}

另外,PHPdoc.org recommends to use @see in case of a @deprecated method

  

建议(但不要求)提供附加说明,说明关联元素被弃用的原因。如果它被另一个方法取代,则建议在指向新元素的同一PHPDoc中添加@see标记。