Skip to content

Commit

Permalink
phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Dec 29, 2015
1 parent 7314fa9 commit 1f70210
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 13 deletions.
13 changes: 10 additions & 3 deletions framework/Group/lib/Horde/Group/Base.php
@@ -1,8 +1,5 @@
<?php
/**
* Horde_Group_Base is the base class for all drivers of the Horde group
* system.
*
* Copyright 1999-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
Expand All @@ -13,6 +10,16 @@
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/

/**
* Horde_Group_Base is the base class for all drivers of the Horde group
* system.
*
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/
abstract class Horde_Group_Base
{
/**
Expand Down
11 changes: 9 additions & 2 deletions framework/Group/lib/Horde/Group/Exception.php
@@ -1,7 +1,5 @@
<?php
/**
* Exception handler for the horde/Group package.
*
* Copyright 2010-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
Expand All @@ -12,6 +10,15 @@
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/

/**
* Exception handler for the horde/Group package.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/
class Horde_Group_Exception extends Horde_Exception_Wrapped
{
}
12 changes: 10 additions & 2 deletions framework/Group/lib/Horde/Group/Kolab.php
@@ -1,7 +1,5 @@
<?php
/**
* This class provides a Kolab driver for the Horde group system.
*
* Copyright 2005-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
Expand All @@ -13,6 +11,16 @@
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/

/**
* This class provides a Kolab driver for the Horde group system.
*
* @author Gunnar Wrobel <wrobel@pardus.de>
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/
class Horde_Group_Kolab extends Horde_Group_Ldap
{
/**
Expand Down
12 changes: 10 additions & 2 deletions framework/Group/lib/Horde/Group/Ldap.php
@@ -1,7 +1,5 @@
<?php
/**
* This class provides an LDAP driver for the Horde group system.
*
* Copyright 2005-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
Expand All @@ -13,6 +11,16 @@
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/

/**
* This class provides an LDAP driver for the Horde group system.
*
* @author Ben Chavet <ben@horde.org>
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/
class Horde_Group_Ldap extends Horde_Group_Base
{
/**
Expand Down
11 changes: 9 additions & 2 deletions framework/Group/lib/Horde/Group/Mock.php
@@ -1,7 +1,5 @@
<?php
/**
* This class provides a mock driver for the Horde group system.
*
* Copyright 2008-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
Expand All @@ -12,6 +10,15 @@
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/

/**
* This class provides a mock driver for the Horde group system.
*
* @author Duck <duck@obala.net>
* @category Horde
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/
class Horde_Group_Mock extends Horde_Group_Base
{
/**
Expand Down
12 changes: 10 additions & 2 deletions framework/Group/lib/Horde/Group/Sql.php
@@ -1,7 +1,5 @@
<?php
/**
* This class provides an SQL driver for the Horde group system.
*
* Copyright 1999-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
Expand All @@ -13,6 +11,16 @@
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/

/**
* This class provides an SQL driver for the Horde group system.
*
* @author Duck <duck@obala.net>
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @package Group
*/
class Horde_Group_Sql extends Horde_Group_Base
{
/**
Expand Down

0 comments on commit 1f70210

Please sign in to comment.