Skip to content

Commit

Permalink
phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Feb 28, 2017
1 parent 6c38d8e commit b3732a6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 36 deletions.
22 changes: 9 additions & 13 deletions framework/Kolab_Storage/lib/Horde/Kolab/Storage.php
@@ -1,14 +1,14 @@
<?php
/**
* A library for accessing a Kolab storage (usually IMAP).
* Copyright 2004-2017 Horde LLC (http://www.horde.org/)
*
* PHP version 5
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
*
* @category Kolab
* @package Kolab_Storage
* @author Gunnar Wrobel <wrobel@pardus.de>
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @link http://pear.horde.org/index.php?package=Kolab_Storage
*/

/**
Expand Down Expand Up @@ -37,16 +37,10 @@
* $folder = Horde_Kolab_Storage::getShareData(Auth::getAuth(), 'event');
* </code>
*
* Copyright 2004-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
*
* @category Kolab
* @package Kolab_Storage
* @author Gunnar Wrobel <wrobel@pardus.de>
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @link http://pear.horde.org/index.php?package=Kolab_Storage
*/
interface Horde_Kolab_Storage
{
Expand All @@ -56,8 +50,9 @@ interface Horde_Kolab_Storage
/**
* Get the folder list object.
*
* @return Horde_Kolab_Storage_List The handler for the list of folders
* present in the Kolab backend.
* @return Horde_Kolab_Storage_List_Tools The handler for the list of
* folders present in the Kolab
* backend.
*/
public function getList();

Expand All @@ -66,8 +61,9 @@ public function getList();
*
* @param string $type The type of system user.
*
* @return Horde_Kolab_Storage_List The handler for the list of folders
* present in the Kolab backend.
* @return Horde_Kolab_Storage_List_Tools The handler for the list of
* folders present in the Kolab
* backend.
*/
public function getSystemList($type);

Expand Down
22 changes: 9 additions & 13 deletions framework/Kolab_Storage/lib/Horde/Kolab/Storage/Base.php
@@ -1,29 +1,23 @@
<?php
/**
* The basis for Kolab storage access.
* Copyright 2004-2017 Horde LLC (http://www.horde.org/)
*
* PHP version 5
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
*
* @category Kolab
* @package Kolab_Storage
* @author Gunnar Wrobel <wrobel@pardus.de>
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @link http://pear.horde.org/index.php?package=Kolab_Storage
*/

/**
* The basis for Kolab storage access.
*
* Copyright 2004-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
*
* @category Kolab
* @package Kolab_Storage
* @author Gunnar Wrobel <wrobel@pardus.de>
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @link http://pear.horde.org/index.php?package=Kolab_Storage
*/
abstract class Horde_Kolab_Storage_Base
implements Horde_Kolab_Storage
Expand Down Expand Up @@ -115,8 +109,9 @@ public function __construct(Horde_Kolab_Storage_Driver $master,
*
* @param string $type The type of system user.
*
* @return Horde_Kolab_Storage_List The handler for the list of folders
* present in the Kolab backend.
* @return Horde_Kolab_Storage_List_Tools The handler for the list of
* folders present in the Kolab
* backend.
*/
public function getSystemList($type)
{
Expand All @@ -143,8 +138,9 @@ public function getSystemList($type)
* @params Horde_Kolab_Storage_Driver $driver Optional driver as backend
* for the list.
*
* @return Horde_Kolab_Storage_List The handler for the list of folders
* present in the Kolab backend.
* @return Horde_Kolab_Storage_List_Tools The handler for the list of
* folders present in the Kolab
* backend.
*/
public function getList(Horde_Kolab_Storage_Driver $driver = null)
{
Expand Down
15 changes: 5 additions & 10 deletions framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Tools.php
@@ -1,29 +1,24 @@
<?php
/**
* Manages and provides the toolset available for dealing with the list of Kolab folders.
* Copyright 2012-2017 Horde LLC (http://www.horde.org/)
*
* PHP version 5
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
*
* @category Kolab
* @package Kolab_Storage
* @author Gunnar Wrobel <wrobel@pardus.de>
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @link http://pear.horde.org/index.php?package=Kolab_Storage
*/

/**
* Manages and provides the toolset available for dealing with the list of Kolab folders.
*
* Copyright 2012-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
* Manages and provides the toolset available for dealing with the list of
* Kolab folders.
*
* @category Kolab
* @package Kolab_Storage
* @author Gunnar Wrobel <wrobel@pardus.de>
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
* @link http://pear.horde.org/index.php?package=Kolab_Storage
*/
class Horde_Kolab_Storage_List_Tools
{
Expand Down

0 comments on commit b3732a6

Please sign in to comment.