Thread: phpDoc
View Single Post
Old 06-01-2008, 04:42 PM   #3 (permalink)
Kalle
The Frequenter
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
Kalle is on a distinguished road
Default

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
    
{
        
/* ... */
    
}
?>
=)
__________________
Send a message via MSN to Kalle Send a message via Skype™ to Kalle
Kalle is offline  
Reply With Quote