configuration Php Doc Block
Hello!
I have a class with a few methods.
In this class there is a method.
------------------------------
public function addTest ($ value1, $ value2)
{
$ value3 = $ value1 + $ value2;
return $ value3;
}
----------------------------
If I '/ **' writing and the 'Enter' key press I get
the following result
/ **
* @ Param $ value1
* @ Param $ value2
* @ Return mixed
* /
public function addTest ($ value1, $ value2)
{
$ value3 = $ value1 + $ value2;
return $ value3;
}
Where can I customize the php doc block?
I miss the tag '@ access'
Sincerely yours
Stephan
请先登录再写评论。
Hi there,
Nowhere in v5 AFAIK.
in v6 -- Settings | File and Code Templates
Can't find ' Settings ' -> ' File and Code Templates ' :-(
Stephan
ffffffffffffff found
sorry
Stephan