以下哪项是为PHPDocumentor记录此方法的返回类型的正确方法?
原文链接:https://www.f2er.com/php/135472.html方法1:
/** * @return array Foo array. */ public function foo() { return array(1,2,3); }
方法2:
/** * @return integer[] Foo array. */ public function foo() { return array(1,3); }
此外,这两种方法都有任何IDE含义吗?
编辑: