From 41621c92e40c4a905dde7d8d66df36cb979de13e Mon Sep 17 00:00:00 2001 From: Gunnar Wrobel Date: Wed, 22 Apr 2009 23:05:52 +0200 Subject: [PATCH] Removed unnecessary class. --- .../lib/Horde/Kolab/Server/Test/Search.php | 57 ---------------------- 1 file changed, 57 deletions(-) delete mode 100644 framework/Kolab_Server/lib/Horde/Kolab/Server/Test/Search.php 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; - } -} -- 2.11.0