From: Gunnar Wrobel Date: Wed, 22 Apr 2009 21:05:52 +0000 (+0200) Subject: Removed unnecessary class. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=41621c92e40c4a905dde7d8d66df36cb979de13e;p=horde.git Removed unnecessary class. --- diff --git a/framework/Kolab_Server/lib/Horde/Kolab/Server/Test/Search.php b/framework/Kolab_Server/lib/Horde/Kolab/Server/Test/Search.php deleted file mode 100644 index d5af8733d..000000000 --- a/framework/Kolab_Server/lib/Horde/Kolab/Server/Test/Search.php +++ /dev/null @@ -1,57 +0,0 @@ - - * @license http://www.fsf.org/copyleft/lgpl.html LGPL - * @link http://pear.horde.org/index.php?package=Kolab_Server - */ - -/** - * A class for simulating a Kolab user database search result. - * - * Copyright 2009 The Horde Project (http://www.horde.org/) - * - * 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 Kolab - * @package Kolab_Server - * @author Gunnar Wrobel - * @license http://www.fsf.org/copyleft/lgpl.html LGPL - * @link http://pear.horde.org/index.php?package=Kolab_Server - */ -class Horde_Kolab_Server_Test_Search -{ - - /** - * The result data. - * - * @var array - */ - protected $data; - - /** - * Construct a new instance of this class. - * - * @param array $the search result. - */ - public function __construct($data = array()) - { - $this->data = $data; - } - - /** - * Return the result. - * - * @return array The result dataset. - */ - public function as_struct() - { - return $this->data; - } -}