Fix docblocks in Imap_Client
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 19 May 2010 17:32:21 +0000 (11:32 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 19 May 2010 18:10:30 +0000 (12:10 -0600)
16 files changed:
framework/Imap_Client/lib/Horde/Imap/Client.php
framework/Imap_Client/lib/Horde/Imap/Client/Base.php
framework/Imap_Client/lib/Horde/Imap/Client/Cache.php
framework/Imap_Client/lib/Horde/Imap/Client/Cclient.php
framework/Imap_Client/lib/Horde/Imap/Client/Cclient/Pop3.php
framework/Imap_Client/lib/Horde/Imap/Client/DateTime.php
framework/Imap_Client/lib/Horde/Imap/Client/Exception.php
framework/Imap_Client/lib/Horde/Imap/Client/Mock.php
framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php
framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php
framework/Imap_Client/lib/Horde/Imap/Client/Sort.php
framework/Imap_Client/lib/Horde/Imap/Client/Thread.php
framework/Imap_Client/lib/Horde/Imap/Client/Utf7imap.php
framework/Imap_Client/lib/Horde/Imap/Client/Utils.php
framework/Imap_Client/test/Horde/Imap/test_client.php

index 4beb721..9982294 100644 (file)
@@ -70,7 +70,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client
 {
index 12809f7..682c6d4 100644 (file)
@@ -12,7 +12,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 abstract class Horde_Imap_Client_Base
 {
index bd836ad..afa4eef 100644 (file)
@@ -34,7 +34,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Cache
 {
index e33666c..27aff24 100644 (file)
@@ -29,7 +29,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Cclient extends Horde_Imap_Client_Base
 {
index c57ddc3..569c7c8 100644 (file)
@@ -8,8 +8,6 @@
  *
  * PHP IMAP module: http://www.php.net/imap
  *
- * No additional paramaters from those defined in Horde_Imap_Client_Cclient.
- *
  * Copyright 2008-2010 The Horde Project (http://www.horde.org/)
  *
  * See the enclosed file COPYING for license information (LGPL). If you
@@ -17,7 +15,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Cclient_Pop3 extends Horde_Imap_Client_Cclient
 {
index 03ba437..4644989 100644 (file)
@@ -11,7 +11,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_DateTime
 {
index 595ccee..875e54f 100644 (file)
@@ -9,7 +9,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Exception extends Exception
 {
index 4df43a8..1ef5262 100644 (file)
@@ -4,11 +4,11 @@
  *
  * PHP version 5
  *
- * @category Horde
- * @package  Horde_Imap_Client
  * @author   Gunnar Wrobel <wrobel@pardus.de>
+ * @category Horde
  * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
  * @link     http://pear.horde.org/index.php?package=Imap_Client
+ * @package  Imap_Client
  */
 
 /**
  * See the enclosed file COPYING for license information (LGPL). If you
  * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  *
- * @category Horde
- * @package  Horde_Imap_Client
  * @author   Gunnar Wrobel <wrobel@pardus.de>
+ * @category Horde
  * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
  * @link     http://pear.horde.org/index.php?package=Imap_Client
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Mock extends Horde_Imap_Client_Base
 {
index a3b80a8..495f818 100644 (file)
@@ -12,7 +12,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Search_Query
 {
index a2141f5..9961163 100644 (file)
@@ -85,7 +85,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Socket extends Horde_Imap_Client_Base
 {
index 732b969..178f789 100644 (file)
@@ -7,8 +7,6 @@
  *
  * Caching is not supported in this driver.
  *
- * Optional Parameters: NONE
- *
  * This driver implements the following POP3-related RFCs:
  * STD 53/RFC 1939 - POP3 specification
  * RFC 2195 - CRAM-MD5 authentication
@@ -62,7 +60,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Socket_Pop3 extends Horde_Imap_Client_Base
 {
index 0b62582..9dbe588 100644 (file)
@@ -10,7 +10,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Sort
 {
index 20d831b..d1ebf0b 100644 (file)
@@ -10,7 +10,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Thread
 {
index 3e5d131..902b7a9 100644 (file)
@@ -19,7 +19,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Utf7imap
 {
index 9ac849f..f49eeca 100644 (file)
@@ -14,7 +14,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 class Horde_Imap_Client_Utils
 {
index 8ee395f..0b79134 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Test script for the Horde_Imap_Client:: library.
+ * Test script for the Horde/Imap_Client package.
  *
  * Usage:
  *   test_client.php [[username] [[password] [[IMAP URL] [driver]]]]
@@ -19,7 +19,8 @@
  *
  * @author   Michael Slusarz <slusarz@horde.org>
  * @category Horde
- * @package  Horde_Imap_Client
+ * @license  http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @package  Imap_Client
  */
 
 /** Configuration **/