| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | abstract class AbstractComponent implements SearchComponent |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Search configuration - plugin.tx_solr.search |
||
| 28 | * |
||
| 29 | * @var array |
||
| 30 | */ |
||
| 31 | protected $searchConfiguration = []; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Sets the plugin's search configuration. |
||
| 35 | * |
||
| 36 | * @param array $configuration Configuration |
||
| 37 | */ |
||
| 38 | 44 | public function setSearchConfiguration(array $configuration) |
|
| 43 |