Webiny\Component\Mongo\Index\IndexInterface::getOptions PHP Method

getOptions() public method

public getOptions ( )
    public function getOptions();

Usage Example

Example #1
0
 public function createIndex($collectionName, IndexInterface $index, array $options = [])
 {
     return $this->bridge->createIndex($this->cName($collectionName), $index->getFields(), $index->getOptions() + $options);
 }
All Usage Examples Of Webiny\Component\Mongo\Index\IndexInterface::getOptions