diff options
Diffstat (limited to 'lib/private/search/result.php')
-rw-r--r-- | lib/private/search/result.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/private/search/result.php b/lib/private/search/result.php deleted file mode 100644 index ceefeab2dae..00000000000 --- a/lib/private/search/result.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php -/** - * a result of a search - */ -class OC_Search_Result{ - public $name; - public $text; - public $link; - public $type; - public $container; - - /** - * create a new search result - * @param string $name short name for the result - * @param string $text some more information about the result - * @param string $link link for the result - * @param string $type the type of result as human readable string ('File', 'Music', etc) - * @param string $container - */ - public function __construct($name, $text, $link, $type, $container) { - $this->name=$name; - $this->text=$text; - $this->link=$link; - $this->type=$type; - $this->container=$container; - } -} |