I always saw these header comments in php and often wondered if any software was used to configure them? I think I remember JavaDoc? But I'm not sure if this is generated automatically? Or is it just some kind of documentation standard?
The following is an example of CodeIgniter :
/** * CodeIgniter * * An open source application development framework for PHP 4.3.2 or newer * * @package CodeIgniter * @author ExpressionEngine Dev Team * @copyright Copyright (c) 2008, EllisLab, Inc. * @license http://codeigniter.com/user_guide/license.html * @link http://codeigniter.com * @since Version 1.0 * @filesource */
I would really like to improve my comments, and I feel that this will be a great form for my projects.
Jakub source share