diff options
| author | Lester Caine <lester@lsces.co.uk> | 2007-02-15 19:36:12 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2007-02-15 19:36:12 +0000 |
| commit | 74aa6037f8a84996e8e4d909737e6f1b72b3a1b0 (patch) | |
| tree | ba99f69cb55cbd623ab7c5239a9c354ca3b7b839 /BitBoard.php | |
| parent | 183c9a535cae5876c5c2b15ff96e706f2b22c194 (diff) | |
| download | boards-74aa6037f8a84996e8e4d909737e6f1b72b3a1b0.tar.gz boards-74aa6037f8a84996e8e4d909737e6f1b72b3a1b0.tar.bz2 boards-74aa6037f8a84996e8e4d909737e6f1b72b3a1b0.zip | |
Add phpdoc comment blocks for documentation
Diffstat (limited to 'BitBoard.php')
| -rw-r--r-- | BitBoard.php | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/BitBoard.php b/BitBoard.php index 280795a..307129c 100644 --- a/BitBoard.php +++ b/BitBoard.php @@ -1,19 +1,19 @@ <?php /** -* $Header: /cvsroot/bitweaver/_bit_boards/BitBoard.php,v 1.22 2007/02/14 08:19:27 bitweaver Exp $ -* $Id: BitBoard.php,v 1.22 2007/02/14 08:19:27 bitweaver Exp $ -*/ + * $Header: /cvsroot/bitweaver/_bit_boards/BitBoard.php,v 1.23 2007/02/15 19:36:12 lsces Exp $ + * $Id: BitBoard.php,v 1.23 2007/02/15 19:36:12 lsces Exp $ + * + * BitBoard class to illustrate best practices when creating a new bitweaver package that + * builds on core bitweaver functionality, such as the Liberty CMS engine + * + * @author spider <spider@steelsun.com> + * @version $Revision: 1.23 $ $Date: 2007/02/15 19:36:12 $ $Author: lsces $ + * @package boards + */ /** -* BitBoard class to illustrate best practices when creating a new bitweaver package that -* builds on core bitweaver functionality, such as the Liberty CMS engine -* -* @date created 2004/8/15 -* @author spider <spider@steelsun.com> -* @version $Revision: 1.22 $ $Date: 2007/02/14 08:19:27 $ $Author: bitweaver $ -* @class BitBoard -*/ - + * required setup + */ require_once( LIBERTY_PKG_PATH.'LibertyAttachable.php' ); /** @@ -21,6 +21,9 @@ require_once( LIBERTY_PKG_PATH.'LibertyAttachable.php' ); */ define( 'BITBOARD_CONTENT_TYPE_GUID', 'bitboard' ); +/** + * @package boards + */ class BitBoard extends LibertyAttachable { /** * Primary key for our mythical BitBoard class object & table |
