Smile\ElasticsuiteCore\Index\Mapping::getField PHP Method

getField() public method

{@inheritDoc}
public getField ( $name )
    public function getField($name)
    {
        if (!isset($this->fields[$name])) {
            throw new \LogicException("Field {$name} does not exists in mapping");
        }
        return $this->fields[$name];
    }