diff options
author | thomascube <thomas@roundcube.net> | 2010-04-23 14:25:28 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-04-23 14:25:28 +0000 |
commit | d062dbe18cbb2609cd2cc67ae843cf33bb4971cf (patch) | |
tree | a6d5599167927c659dab831b65b853a815f4d280 /program/include/rcube_imap_generic.php | |
parent | d824acaf11b9cc0d196488ef3c9bc03bee41f948 (diff) |
Add class docuumentation blocks and make phpdoc work again
Diffstat (limited to 'program/include/rcube_imap_generic.php')
-rw-r--r-- | program/include/rcube_imap_generic.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/program/include/rcube_imap_generic.php b/program/include/rcube_imap_generic.php index b128c08e5..0616b5a33 100644 --- a/program/include/rcube_imap_generic.php +++ b/program/include/rcube_imap_generic.php @@ -26,6 +26,12 @@ */ +/** + * Struct representing an e-mail message header + * + * @package Mail + * @author Aleksander Machniak <alec@alec.pl> + */ class rcube_mail_header { public $id; @@ -70,6 +76,12 @@ class iilBasicHeader extends rcube_mail_header { } +/** + * PHP based wrapper class to connect to an IMAP server + * + * @package Mail + * @author Aleksander Machniak <alec@alec.pl> + */ class rcube_imap_generic { public $error; |