-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation for each function and MD documentation #10
Comments
Assign yourself as "Assignee" if you want to do this. |
@iJoshuaHD is assigned to #10. |
@PEMapModder sorry but i dont know /**
stands for? or it just explains how this function works? i thought i will be working on Documentation xD |
You can just work on the documentation part :) |
pheww * |
It explains what the function is for. Only API functions need this, though, since internal functions don't need to get documented. |
yea i dont understand how the documentation thingy works xD |
Just do the owner guide and player guide then. Documentation comment is a format. Basically it just explains what the function is for. |
will do :) |
Dis is called java doc. |
PHP doc it is called in PHPStorm. |
It's basically a copy of java doc... On Tuesday, July 22, 2014, PEMapModder [email protected] wrote:
|
I don't think the |
Where's that? On Tuesday, July 22, 2014, PEMapModder [email protected] wrote:
|
/**
* @param string|Player $player
* @return string
*/
public function getPlayerFile($player){
if($player instanceof Player) $player = $player->getName();
return $this->getDataFolder().strtolower($player).".yml";
} |
@PEMapModder PEMapModder does every player have his own file ? |
I guess your right, but still those tags and the doc format look like java On Tuesday, July 22, 2014, swagking47 [email protected] wrote:
|
@swagking47 just an example. |
Thee plugin has a problem in the Faction ranks |
@caingaroo plugin is not finished yet. |
@PEMapModders why didnt you labble it on the plugin , or did i miss it somehoe 😯😯 |
If the plugin is completed, we would make a release. |
Dont know, but could you notify me win the plugin is finished |
Ehh doxygen. |
We will create a release when a beta is ready, and submit on forums when initial release is ready. |
@jython234 you don't need to compile it. It can load source plugin. |
@astersx how are they related? |
They are not related at all.. |
|
What is this? https://github.com/EvolSoft/ServerAuth/blob/master/ServerAuth/resources/config.yml#L30 Also, please don't use the issue tracker as a chatroom. Get on our IRC channel or Gitter chatroom if you need further support. |
Write documentation in the following syntax:
Do it for every API function (that is supposed that other plugins can use).
The text was updated successfully, but these errors were encountered: