Doctrine\ODM\MongoDB\Aggregation\Expr::field PHP Method

field() public method

public field ( string $fieldName ) : self
$fieldName string
return self
    public function field($fieldName)
    {
        $fieldName = $this->getDocumentPersister()->prepareFieldName($fieldName);
        parent::field($fieldName);
        return $this;
    }