Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3/**
4 * Augment search results.
5 * @stable to implement
6 */
7interface ResultAugmentor {
8    /**
9     * Produce data to augment search result set.
10     * @param SearchResult $result
11     * @return mixed Data for this result
12     */
13    public function augment( SearchResult $result );
14}