kickassamd Posted December 21, 2007 Share Posted December 21, 2007 Looking for a online preferabbly free way to document my classes and functions for a CMS I am working on. I have downloaded and used the wiki junk and do not like it so if anyone has any other options please let me know Quote Link to comment https://forums.phpfreaks.com/topic/82747-php-documentation/ Share on other sites More sharing options...
Daniel0 Posted December 21, 2007 Share Posted December 21, 2007 How about phpDocumentor? Example: <?php /** * Bla bla bla description of TestClass and its usage. * * @author John Doe * @package Test * @since 21 Dec, 2007 */ class TestClass { /** * Holds something * * @access private * @var boolean */ private $variable; /** * TestMethod uses bla bla and does something * * @param integer $arg1 * @param array $array * @param boolean $do_something * @see TestClass::something() */ public function test_method($arg1, array $array, $do_something = false) { } /** * Magic * * @magic * @access public */ public function __toString() { } /** * Static method which does something * * @static * @access public * @return float */ public static function static_method() { } /** * Enter description here... * * @final * @param string $var * @param integer $var2 * @return string */ final protected function something($var, $var2 = null) { } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/82747-php-documentation/#findComment-420872 Share on other sites More sharing options...
kickassamd Posted December 21, 2007 Author Share Posted December 21, 2007 Ah, this isnt too bad... Quote Link to comment https://forums.phpfreaks.com/topic/82747-php-documentation/#findComment-420884 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.