06-01-2008, 04:42 PM
|
#3 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
|
The @package command is used at the page level docblock and the class level docblock like below:
PHP Code:
<?php
/**
* @author Kalle Sommer Nielsen <kalle@php.net>
* @package TalkPHP
*/
/**
* Some external class
*
* @author TalkPHP Community <community@talkphp.com>
* @package TalkPHP_External
*/
class TalkPHP_External
{
/* ... */
}
?>
=)
__________________
|
|
|