* $q->select( 'field1', 'field2' ); * * The same could also be written: * * $fields[] = 'field1'; * $fields[] = 'field2; * $q->select( $fields ); * * or using several calls * * $q->select( 'field1' )->select( 'field2' ); * * * @param string|array(string) $... Either a string with a field name or an array of field names. * @return ezcSearchFindQuery */ public function select(); } ?>