Removed unnecessary class.
authorGunnar Wrobel <p@rdus.de>
Wed, 22 Apr 2009 21:05:52 +0000 (23:05 +0200)
committerGunnar Wrobel <p@rdus.de>
Wed, 22 Apr 2009 21:05:52 +0000 (23:05 +0200)
framework/Kolab_Server/lib/Horde/Kolab/Server/Test/Search.php [deleted file]

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 (file)
index d5af873..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/**
- * A class for simulating a Kolab user database search result.
- *
- * PHP version 5
- *
- * @category Kolab
- * @package  Kolab_Server
- * @author   Gunnar Wrobel <wrobel@pardus.de>
- * @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 <wrobel@pardus.de>
- * @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;
-    }
-}