This is a package to convert atom in a small PHP IDE. It's inspired in IntelliJ IDEA. It will capture every piece of documentation written in the format:
Warning: This is a work in progress.
<?php
/**
* Description of the function
*
* @param String $text Description of the 'text' parameter
* @return Boolean Description of the return
*/
function something($text)
{
return true;
}
?>
You can find a good example of its features if you try it with phpBB
.
If you wish to test (or help its development), you can install this package):
git clone git@github.com:aeberdinelli/atom-idea.git && cd atom-idea
apm install
apm link && atom -d
It will support only PHP
at first, but I expect to add Java once PHP is ready, and other languages in the future.
This is my very first package for atom, so try it at your own risk.
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.