php8
[web.mtrack] / MTrack / SearchResult.php
1 <?php
2
3
4 class MTrackSearchResult {
5   /** object identifier of result */
6   public $objectid;
7   /** result ranking; higher is more relevant */
8   public $score;
9   /** excerpt of matching text */
10   public $excerpt;
11
12   /* some implementations may need the caller to provide the context
13    * text; the default just returns what is there */
14   function getExcerpt($text) {
15     return $this->excerpt;
16   }
17 }