mirror of
https://github.com/getgrav/grav.git
synced 2026-03-24 21:40:08 +01:00
Regression: index not working due to missing method
This commit is contained in:
@@ -82,6 +82,17 @@ class FlexIndex extends ObjectIndex implements FlexCollectionInterface, FlexInde
|
||||
$this->setKeyField(null);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $search
|
||||
* @param string|string[]|null $properties
|
||||
* @param array|null $options
|
||||
* @return FlexCollectionInterface
|
||||
*/
|
||||
public function search(string $search, $properties = null, array $options = null) // : FlexCollectionInterface
|
||||
{
|
||||
return $this->__call('search', [$search, $properties, $options]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return FlexDirectory
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user