diff options
Diffstat (limited to 'REFLECTION')
| -rw-r--r-- | REFLECTION | 837 | 
1 files changed, 479 insertions, 358 deletions
| @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #207 solr version 2.4.0 ] { +Extension [ <persistent> extension #197 solr version 2.5.0 ] {    - Dependencies {      Dependency [ libxml (Required) ] @@ -7,9 +7,9 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {    - Constants [4] {      Constant [ integer SOLR_MAJOR_VERSION ] { 2 } -    Constant [ integer SOLR_MINOR_VERSION ] { 4 } +    Constant [ integer SOLR_MINOR_VERSION ] { 5 }      Constant [ integer SOLR_PATCH_VERSION ] { 0 } -    Constant [ string SOLR_EXTENSION_VERSION ] { 2.4.0 } +    Constant [ string SOLR_EXTENSION_VERSION ] { 2.5.0 }    }    - Functions { @@ -20,7 +20,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      }    } -  - Classes [22] { +  - Classes [23] {      Class [ <internal:solr> final class SolrObject implements ArrayAccess ] {        - Constants [0] { @@ -88,12 +88,12 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> <iterateable> final class SolrDocument implements ArrayAccess, Iterator, Traversable, Serializable ] {        - Constants [6] { -        Constant [ integer SORT_DEFAULT ] { 1 } -        Constant [ integer SORT_ASC ] { 1 } -        Constant [ integer SORT_DESC ] { 2 } -        Constant [ integer SORT_FIELD_NAME ] { 1 } -        Constant [ integer SORT_FIELD_VALUE_COUNT ] { 2 } -        Constant [ integer SORT_FIELD_BOOST_VALUE ] { 4 } +        Constant [ public integer SORT_DEFAULT ] { 1 } +        Constant [ public integer SORT_ASC ] { 1 } +        Constant [ public integer SORT_DESC ] { 2 } +        Constant [ public integer SORT_FIELD_NAME ] { 1 } +        Constant [ public integer SORT_FIELD_VALUE_COUNT ] { 2 } +        Constant [ public integer SORT_FIELD_BOOST_VALUE ] { 4 }        }        - Static properties [0] { @@ -180,7 +180,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, prototype Iterator> public method ¤t ] { +        Method [ <internal:solr, prototype Iterator> public method current ] {            - Parameters [0] {            } @@ -295,7 +295,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &getInputDocument ] { +        Method [ <internal:solr> public method getInputDocument ] {            - Parameters [0] {            } @@ -355,13 +355,21 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> final class SolrInputDocument ] { -      - Constants [6] { -        Constant [ integer SORT_DEFAULT ] { 1 } -        Constant [ integer SORT_ASC ] { 1 } -        Constant [ integer SORT_DESC ] { 2 } -        Constant [ integer SORT_FIELD_NAME ] { 1 } -        Constant [ integer SORT_FIELD_VALUE_COUNT ] { 2 } -        Constant [ integer SORT_FIELD_BOOST_VALUE ] { 4 } +      - Constants [14] { +        Constant [ public integer SORT_DEFAULT ] { 1 } +        Constant [ public integer SORT_ASC ] { 1 } +        Constant [ public integer SORT_DESC ] { 2 } +        Constant [ public integer SORT_FIELD_NAME ] { 1 } +        Constant [ public integer SORT_FIELD_VALUE_COUNT ] { 2 } +        Constant [ public integer SORT_FIELD_BOOST_VALUE ] { 4 } +        Constant [ public integer UPDATE_MODIFIER_ADD ] { 1 } +        Constant [ public integer UPDATE_MODIFIER_SET ] { 2 } +        Constant [ public integer UPDATE_MODIFIER_INC ] { 3 } +        Constant [ public integer UPDATE_MODIFIER_REMOVE ] { 4 } +        Constant [ public integer UPDATE_MODIFIER_REMOVEREGEX ] { 5 } +        Constant [ public integer VERSION_ASSERT_NONE ] { 0 } +        Constant [ public integer VERSION_ASSERT_EXISTS ] { 1 } +        Constant [ public integer VERSION_ASSERT_NOT_EXISTS ] { -1 }        }        - Static properties [0] { @@ -374,7 +382,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Property [ <default> private $_hashtable_index ]        } -      - Methods [25] { +      - Methods [28] {          Method [ <internal:solr, ctor> public method __construct ] {            - Parameters [0] { @@ -433,6 +441,15 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } +        Method [ <internal:solr> public method updateField ] { + +          - Parameters [3] { +            Parameter #0 [ <required> $fieldName ] +            Parameter #1 [ <required> $modifier ] +            Parameter #2 [ <required> $value ] +          } +        } +          Method [ <internal:solr> public method getFieldBoost ] {            - Parameters [1] { @@ -528,30 +545,43 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addChildDocuments ] { +        Method [ <internal:solr> public method addChildDocuments ] {            - Parameters [1] {              Parameter #0 [ <required> array &$docs ]            }          } + +        Method [ <internal:solr> public method setVersion ] { + +          - Parameters [1] { +            Parameter #0 [ <required> $version ] +          } +        } + +        Method [ <internal:solr> public method getVersion ] { + +          - Parameters [0] { +          } +        }        }      }      Class [ <internal:solr> class SolrClient ] {        - Constants [12] { -        Constant [ integer SEARCH_SERVLET_TYPE ] { 1 } -        Constant [ integer UPDATE_SERVLET_TYPE ] { 2 } -        Constant [ integer THREADS_SERVLET_TYPE ] { 4 } -        Constant [ integer PING_SERVLET_TYPE ] { 8 } -        Constant [ integer TERMS_SERVLET_TYPE ] { 16 } -        Constant [ integer SYSTEM_SERVLET_TYPE ] { 32 } -        Constant [ string DEFAULT_SEARCH_SERVLET ] { select } -        Constant [ string DEFAULT_UPDATE_SERVLET ] { update } -        Constant [ string DEFAULT_THREADS_SERVLET ] { admin/threads } -        Constant [ string DEFAULT_PING_SERVLET ] { admin/ping } -        Constant [ string DEFAULT_TERMS_SERVLET ] { terms } -        Constant [ string DEFAULT_SYSTEM_SERVLET ] { admin/system } +        Constant [ public integer SEARCH_SERVLET_TYPE ] { 1 } +        Constant [ public integer UPDATE_SERVLET_TYPE ] { 2 } +        Constant [ public integer THREADS_SERVLET_TYPE ] { 4 } +        Constant [ public integer PING_SERVLET_TYPE ] { 8 } +        Constant [ public integer TERMS_SERVLET_TYPE ] { 16 } +        Constant [ public integer SYSTEM_SERVLET_TYPE ] { 32 } +        Constant [ public string DEFAULT_SEARCH_SERVLET ] { select } +        Constant [ public string DEFAULT_UPDATE_SERVLET ] { update } +        Constant [ public string DEFAULT_THREADS_SERVLET ] { admin/threads } +        Constant [ public string DEFAULT_PING_SERVLET ] { admin/ping } +        Constant [ public string DEFAULT_TERMS_SERVLET ] { terms } +        Constant [ public string DEFAULT_SYSTEM_SERVLET ] { admin/system }        }        - Static properties [0] { @@ -564,7 +594,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Property [ <default> private $_hashtable_index ]        } -      - Methods [25] { +      - Methods [26] {          Method [ <internal:solr, ctor> public method __construct ] {            - Parameters [1] { @@ -610,14 +640,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &query ] { +        Method [ <internal:solr> public method query ] {            - Parameters [1] {              Parameter #0 [ <required> SolrParams &$query ]            }          } -        Method [ <internal:solr> public method &addDocument ] { +        Method [ <internal:solr> public method addDocument ] {            - Parameters [3] {              Parameter #0 [ <required> SolrInputDocument &$doc ] @@ -626,7 +656,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addDocuments ] { +        Method [ <internal:solr> public method addDocuments ] {            - Parameters [3] {              Parameter #0 [ <required> array &$docs ] @@ -635,63 +665,70 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &request ] { +        Method [ <internal:solr> public method sendUpdateStream ] { + +          - Parameters [1] { +            Parameter #0 [ <required> SolrExtractRequest &$request ] +          } +        } + +        Method [ <internal:solr> public method request ] {            - Parameters [1] {              Parameter #0 [ <required> $raw_request ]            }          } -        Method [ <internal:solr> public method &setResponseWriter ] { +        Method [ <internal:solr> public method setResponseWriter ] {            - Parameters [1] {              Parameter #0 [ <required> $responseWriter ]            }          } -        Method [ <internal:solr> public method &deleteById ] { +        Method [ <internal:solr> public method deleteById ] {            - Parameters [1] {              Parameter #0 [ <required> $id ]            }          } -        Method [ <internal:solr> public method &deleteByIds ] { +        Method [ <internal:solr> public method deleteByIds ] {            - Parameters [1] {              Parameter #0 [ <required> array $ids ]            }          } -        Method [ <internal:solr> public method &deleteByQuery ] { +        Method [ <internal:solr> public method deleteByQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $query ]            }          } -        Method [ <internal:solr> public method &deleteByQueries ] { +        Method [ <internal:solr> public method deleteByQueries ] {            - Parameters [1] {              Parameter #0 [ <required> array $queries ]            }          } -        Method [ <internal:solr> public method &getById ] { +        Method [ <internal:solr> public method getById ] {            - Parameters [1] {              Parameter #0 [ <required> $id ]            }          } -        Method [ <internal:solr> public method &getByIds ] { +        Method [ <internal:solr> public method getByIds ] {            - Parameters [1] {              Parameter #0 [ <required> array $ids ]            }          } -        Method [ <internal:solr> public method &commit ] { +        Method [ <internal:solr> public method commit ] {            - Parameters [3] {              Parameter #0 [ <optional> $softCommit ] @@ -700,7 +737,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &optimize ] { +        Method [ <internal:solr> public method optimize ] {            - Parameters [3] {              Parameter #0 [ <optional> $maxSegments ] @@ -709,25 +746,25 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &rollback ] { +        Method [ <internal:solr> public method rollback ] {            - Parameters [0] {            }          } -        Method [ <internal:solr> public method &ping ] { +        Method [ <internal:solr> public method ping ] {            - Parameters [0] {            }          } -        Method [ <internal:solr> public method &system ] { +        Method [ <internal:solr> public method system ] {            - Parameters [0] {            }          } -        Method [ <internal:solr> public method &threads ] { +        Method [ <internal:solr> public method threads ] {            - Parameters [0] {            } @@ -751,7 +788,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {        }        - Methods [13] { -        Method [ <internal:solr> public method &setParam ] { +        Method [ <internal:solr> public method setParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -759,7 +796,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addParam ] { +        Method [ <internal:solr> public method addParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -812,7 +849,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &add ] { +        Method [ <internal:solr> public method add ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -820,7 +857,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &set ] { +        Method [ <internal:solr> public method set ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -865,7 +902,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &setParam ] { +        Method [ <internal:solr, inherits SolrParams> public method setParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -873,7 +910,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &addParam ] { +        Method [ <internal:solr, inherits SolrParams> public method addParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -926,7 +963,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &add ] { +        Method [ <internal:solr, inherits SolrParams> public method add ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -934,7 +971,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &set ] { +        Method [ <internal:solr, inherits SolrParams> public method set ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -954,12 +991,12 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> class SolrQuery extends SolrModifiableParams implements Serializable ] {        - Constants [6] { -        Constant [ integer ORDER_ASC ] { 0 } -        Constant [ integer ORDER_DESC ] { 1 } -        Constant [ integer FACET_SORT_INDEX ] { 0 } -        Constant [ integer FACET_SORT_COUNT ] { 1 } -        Constant [ integer TERMS_SORT_INDEX ] { 0 } -        Constant [ integer TERMS_SORT_COUNT ] { 1 } +        Constant [ public integer ORDER_ASC ] { 0 } +        Constant [ public integer ORDER_DESC ] { 1 } +        Constant [ public integer FACET_SORT_INDEX ] { 0 } +        Constant [ public integer FACET_SORT_COUNT ] { 1 } +        Constant [ public integer TERMS_SORT_INDEX ] { 0 } +        Constant [ public integer TERMS_SORT_COUNT ] { 1 }        }        - Static properties [0] { @@ -986,7 +1023,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setQuery ] { +        Method [ <internal:solr> public method setQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $q ] @@ -999,7 +1036,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setStart ] { +        Method [ <internal:solr> public method setStart ] {            - Parameters [1] {              Parameter #0 [ <required> $start ] @@ -1012,7 +1049,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setRows ] { +        Method [ <internal:solr> public method setRows ] {            - Parameters [1] {              Parameter #0 [ <required> $rows ] @@ -1025,14 +1062,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addField ] { +        Method [ <internal:solr> public method addField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ]            }          } -        Method [ <internal:solr> public method &removeField ] { +        Method [ <internal:solr> public method removeField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ] @@ -1045,7 +1082,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addSortField ] { +        Method [ <internal:solr> public method addSortField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -1053,7 +1090,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &removeSortField ] { +        Method [ <internal:solr> public method removeSortField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ] @@ -1066,14 +1103,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addFilterQuery ] { +        Method [ <internal:solr> public method addFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ]            }          } -        Method [ <internal:solr> public method &removeFilterQuery ] { +        Method [ <internal:solr> public method removeFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ] @@ -1086,21 +1123,21 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setShowDebugInfo ] { +        Method [ <internal:solr> public method setShowDebugInfo ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr> public method &setExplainOther ] { +        Method [ <internal:solr> public method setExplainOther ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr> public method &setTimeAllowed ] { +        Method [ <internal:solr> public method setTimeAllowed ] {            - Parameters [1] {              Parameter #0 [ <required> $timeAllowed ] @@ -1113,28 +1150,28 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setOmitHeader ] { +        Method [ <internal:solr> public method setOmitHeader ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr> public method &setEchoHandler ] { +        Method [ <internal:solr> public method setEchoHandler ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr> public method &setEchoParams ] { +        Method [ <internal:solr> public method setEchoParams ] {            - Parameters [1] {              Parameter #0 [ <required> $type ]            }          } -        Method [ <internal:solr> public method &setFacet ] { +        Method [ <internal:solr> public method setFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1147,14 +1184,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addFacetField ] { +        Method [ <internal:solr> public method addFacetField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeFacetField ] { +        Method [ <internal:solr> public method removeFacetField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1167,14 +1204,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addFacetQuery ] { +        Method [ <internal:solr> public method addFacetQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeFacetQuery ] { +        Method [ <internal:solr> public method removeFacetQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1187,7 +1224,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetPrefix ] { +        Method [ <internal:solr> public method setFacetPrefix ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1202,7 +1239,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetSort ] { +        Method [ <internal:solr> public method setFacetSort ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1217,7 +1254,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetLimit ] { +        Method [ <internal:solr> public method setFacetLimit ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1232,7 +1269,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetOffset ] { +        Method [ <internal:solr> public method setFacetOffset ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1247,7 +1284,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetMinCount ] { +        Method [ <internal:solr> public method setFacetMinCount ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1262,7 +1299,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetMissing ] { +        Method [ <internal:solr> public method setFacetMissing ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1277,7 +1314,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetMethod ] { +        Method [ <internal:solr> public method setFacetMethod ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1292,7 +1329,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetEnumCacheMinDefaultFrequency ] { +        Method [ <internal:solr> public method setFacetEnumCacheMinDefaultFrequency ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1300,14 +1337,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addFacetDateField ] { +        Method [ <internal:solr> public method addFacetDateField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeFacetDateField ] { +        Method [ <internal:solr> public method removeFacetDateField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1320,7 +1357,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetDateStart ] { +        Method [ <internal:solr> public method setFacetDateStart ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1335,7 +1372,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetDateEnd ] { +        Method [ <internal:solr> public method setFacetDateEnd ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1350,7 +1387,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetDateGap ] { +        Method [ <internal:solr> public method setFacetDateGap ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1365,7 +1402,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setFacetDateHardEnd ] { +        Method [ <internal:solr> public method setFacetDateHardEnd ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1380,7 +1417,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addFacetDateOther ] { +        Method [ <internal:solr> public method addFacetDateOther ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1388,7 +1425,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &removeFacetDateOther ] { +        Method [ <internal:solr> public method removeFacetDateOther ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1403,7 +1440,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroup ] { +        Method [ <internal:solr> public method setGroup ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1416,7 +1453,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addGroupField ] { +        Method [ <internal:solr> public method addGroupField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1429,7 +1466,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addGroupFunction ] { +        Method [ <internal:solr> public method addGroupFunction ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1442,7 +1479,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addGroupQuery ] { +        Method [ <internal:solr> public method addGroupQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1455,7 +1492,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupLimit ] { +        Method [ <internal:solr> public method setGroupLimit ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1468,7 +1505,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupOffset ] { +        Method [ <internal:solr> public method setGroupOffset ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1481,7 +1518,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addGroupSortField ] { +        Method [ <internal:solr> public method addGroupSortField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -1495,7 +1532,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupFormat ] { +        Method [ <internal:solr> public method setGroupFormat ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1508,7 +1545,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupMain ] { +        Method [ <internal:solr> public method setGroupMain ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1521,7 +1558,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupNGroups ] { +        Method [ <internal:solr> public method setGroupNGroups ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1534,7 +1571,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupTruncate ] { +        Method [ <internal:solr> public method setGroupTruncate ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1547,7 +1584,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupFacet ] { +        Method [ <internal:solr> public method setGroupFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1560,7 +1597,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setGroupCachePercent ] { +        Method [ <internal:solr> public method setGroupCachePercent ] {            - Parameters [1] {              Parameter #0 [ <required> $percent ] @@ -1573,14 +1610,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &collapse ] { +        Method [ <internal:solr> public method collapse ] {            - Parameters [1] {              Parameter #0 [ <required> SolrCollapseFunction &$collapseFunction ]            }          } -        Method [ <internal:solr> public method &setExpand ] { +        Method [ <internal:solr> public method setExpand ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1593,7 +1630,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addExpandSortField ] { +        Method [ <internal:solr> public method addExpandSortField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -1601,7 +1638,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &removeExpandSortField ] { +        Method [ <internal:solr> public method removeExpandSortField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ] @@ -1614,7 +1651,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setExpandRows ] { +        Method [ <internal:solr> public method setExpandRows ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1627,7 +1664,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setExpandQuery ] { +        Method [ <internal:solr> public method setExpandQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $q ] @@ -1640,14 +1677,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addExpandFilterQuery ] { +        Method [ <internal:solr> public method addExpandFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ]            }          } -        Method [ <internal:solr> public method &removeExpandFilterQuery ] { +        Method [ <internal:solr> public method removeExpandFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ] @@ -1660,7 +1697,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlight ] { +        Method [ <internal:solr> public method setHighlight ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1673,14 +1710,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addHighlightField ] { +        Method [ <internal:solr> public method addHighlightField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeHighlightField ] { +        Method [ <internal:solr> public method removeHighlightField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1693,7 +1730,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightSnippets ] { +        Method [ <internal:solr> public method setHighlightSnippets ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1708,7 +1745,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightFragsize ] { +        Method [ <internal:solr> public method setHighlightFragsize ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1723,7 +1760,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightMergeContiguous ] { +        Method [ <internal:solr> public method setHighlightMergeContiguous ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1738,7 +1775,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightRequireFieldMatch ] { +        Method [ <internal:solr> public method setHighlightRequireFieldMatch ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1751,7 +1788,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightMaxAnalyzedChars ] { +        Method [ <internal:solr> public method setHighlightMaxAnalyzedChars ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1764,7 +1801,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightAlternateField ] { +        Method [ <internal:solr> public method setHighlightAlternateField ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1779,7 +1816,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightMaxAlternateFieldLength ] { +        Method [ <internal:solr> public method setHighlightMaxAlternateFieldLength ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1794,7 +1831,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightFormatter ] { +        Method [ <internal:solr> public method setHighlightFormatter ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1809,7 +1846,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightSimplePre ] { +        Method [ <internal:solr> public method setHighlightSimplePre ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1824,7 +1861,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightSimplePost ] { +        Method [ <internal:solr> public method setHighlightSimplePost ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1839,7 +1876,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightFragmenter ] { +        Method [ <internal:solr> public method setHighlightFragmenter ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -1854,7 +1891,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightUsePhraseHighlighter ] { +        Method [ <internal:solr> public method setHighlightUsePhraseHighlighter ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1867,7 +1904,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightHighlightMultiTerm ] { +        Method [ <internal:solr> public method setHighlightHighlightMultiTerm ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1880,7 +1917,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightRegexSlop ] { +        Method [ <internal:solr> public method setHighlightRegexSlop ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1893,7 +1930,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightRegexPattern ] { +        Method [ <internal:solr> public method setHighlightRegexPattern ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1906,7 +1943,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setHighlightRegexMaxAnalyzedChars ] { +        Method [ <internal:solr> public method setHighlightRegexMaxAnalyzedChars ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1919,7 +1956,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setStats ] { +        Method [ <internal:solr> public method setStats ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1932,14 +1969,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addStatsField ] { +        Method [ <internal:solr> public method addStatsField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeStatsField ] { +        Method [ <internal:solr> public method removeStatsField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1952,14 +1989,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addStatsFacet ] { +        Method [ <internal:solr> public method addStatsFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeStatsFacet ] { +        Method [ <internal:solr> public method removeStatsFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1972,7 +2009,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMlt ] { +        Method [ <internal:solr> public method setMlt ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1985,7 +2022,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltCount ] { +        Method [ <internal:solr> public method setMltCount ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -1998,14 +2035,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addMltField ] { +        Method [ <internal:solr> public method addMltField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr> public method &removeMltField ] { +        Method [ <internal:solr> public method removeMltField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2018,7 +2055,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &addMltQueryField ] { +        Method [ <internal:solr> public method addMltQueryField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -2026,7 +2063,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &removeMltQueryField ] { +        Method [ <internal:solr> public method removeMltQueryField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2039,7 +2076,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltMinTermFrequency ] { +        Method [ <internal:solr> public method setMltMinTermFrequency ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2052,7 +2089,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltMinDocFrequency ] { +        Method [ <internal:solr> public method setMltMinDocFrequency ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2065,7 +2102,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltMinWordLength ] { +        Method [ <internal:solr> public method setMltMinWordLength ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2078,7 +2115,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltMaxWordLength ] { +        Method [ <internal:solr> public method setMltMaxWordLength ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2091,7 +2128,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltMaxNumTokens ] { +        Method [ <internal:solr> public method setMltMaxNumTokens ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2104,7 +2141,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltMaxNumQueryTerms ] { +        Method [ <internal:solr> public method setMltMaxNumQueryTerms ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2117,7 +2154,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setMltBoost ] { +        Method [ <internal:solr> public method setMltBoost ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2130,7 +2167,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTerms ] { +        Method [ <internal:solr> public method setTerms ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2143,7 +2180,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsField ] { +        Method [ <internal:solr> public method setTermsField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2156,7 +2193,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsLowerBound ] { +        Method [ <internal:solr> public method setTermsLowerBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2169,7 +2206,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsUpperBound ] { +        Method [ <internal:solr> public method setTermsUpperBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2182,7 +2219,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsIncludeLowerBound ] { +        Method [ <internal:solr> public method setTermsIncludeLowerBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2195,7 +2232,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsIncludeUpperBound ] { +        Method [ <internal:solr> public method setTermsIncludeUpperBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2208,7 +2245,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsMinCount ] { +        Method [ <internal:solr> public method setTermsMinCount ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2221,7 +2258,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsMaxCount ] { +        Method [ <internal:solr> public method setTermsMaxCount ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2234,7 +2271,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsPrefix ] { +        Method [ <internal:solr> public method setTermsPrefix ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2247,7 +2284,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsLimit ] { +        Method [ <internal:solr> public method setTermsLimit ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2260,7 +2297,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsReturnRaw ] { +        Method [ <internal:solr> public method setTermsReturnRaw ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2273,7 +2310,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr> public method &setTermsSort ] { +        Method [ <internal:solr> public method setTermsSort ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2286,7 +2323,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &setParam ] { +        Method [ <internal:solr, inherits SolrParams> public method setParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -2294,7 +2331,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &addParam ] { +        Method [ <internal:solr, inherits SolrParams> public method addParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -2347,7 +2384,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &add ] { +        Method [ <internal:solr, inherits SolrParams> public method add ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -2355,7 +2392,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &set ] { +        Method [ <internal:solr, inherits SolrParams> public method set ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -2597,7 +2634,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method setQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $q ] @@ -2610,7 +2647,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setStart ] { +        Method [ <internal:solr, inherits SolrQuery> public method setStart ] {            - Parameters [1] {              Parameter #0 [ <required> $start ] @@ -2623,7 +2660,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setRows ] { +        Method [ <internal:solr, inherits SolrQuery> public method setRows ] {            - Parameters [1] {              Parameter #0 [ <required> $rows ] @@ -2636,14 +2673,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ] @@ -2656,7 +2693,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addSortField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addSortField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -2664,7 +2701,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeSortField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeSortField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ] @@ -2677,14 +2714,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addFilterQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method addFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeFilterQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ] @@ -2697,21 +2734,21 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setShowDebugInfo ] { +        Method [ <internal:solr, inherits SolrQuery> public method setShowDebugInfo ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setExplainOther ] { +        Method [ <internal:solr, inherits SolrQuery> public method setExplainOther ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTimeAllowed ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTimeAllowed ] {            - Parameters [1] {              Parameter #0 [ <required> $timeAllowed ] @@ -2724,28 +2761,28 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setOmitHeader ] { +        Method [ <internal:solr, inherits SolrQuery> public method setOmitHeader ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setEchoHandler ] { +        Method [ <internal:solr, inherits SolrQuery> public method setEchoHandler ] {            - Parameters [1] {              Parameter #0 [ <required> $flag ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setEchoParams ] { +        Method [ <internal:solr, inherits SolrQuery> public method setEchoParams ] {            - Parameters [1] {              Parameter #0 [ <required> $type ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacet ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2758,14 +2795,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addFacetField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addFacetField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeFacetField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeFacetField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2778,14 +2815,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addFacetQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method addFacetQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeFacetQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeFacetQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2798,7 +2835,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetPrefix ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetPrefix ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2813,7 +2850,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetSort ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetSort ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2828,7 +2865,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetLimit ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetLimit ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2843,7 +2880,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetOffset ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetOffset ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2858,7 +2895,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetMinCount ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetMinCount ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2873,7 +2910,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetMissing ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetMissing ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2888,7 +2925,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetMethod ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetMethod ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2903,7 +2940,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetEnumCacheMinDefaultFrequency ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetEnumCacheMinDefaultFrequency ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2911,14 +2948,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addFacetDateField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addFacetDateField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeFacetDateField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeFacetDateField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -2931,7 +2968,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetDateStart ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetDateStart ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2946,7 +2983,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetDateEnd ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetDateEnd ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2961,7 +2998,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetDateGap ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetDateGap ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2976,7 +3013,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setFacetDateHardEnd ] { +        Method [ <internal:solr, inherits SolrQuery> public method setFacetDateHardEnd ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2991,7 +3028,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addFacetDateOther ] { +        Method [ <internal:solr, inherits SolrQuery> public method addFacetDateOther ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -2999,7 +3036,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeFacetDateOther ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeFacetDateOther ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3014,7 +3051,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroup ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroup ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3027,7 +3064,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addGroupField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addGroupField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3040,7 +3077,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addGroupFunction ] { +        Method [ <internal:solr, inherits SolrQuery> public method addGroupFunction ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3053,7 +3090,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addGroupQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method addGroupQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3066,7 +3103,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupLimit ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupLimit ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3079,7 +3116,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupOffset ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupOffset ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3092,7 +3129,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addGroupSortField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addGroupSortField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -3106,7 +3143,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupFormat ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupFormat ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3119,7 +3156,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupMain ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupMain ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3132,7 +3169,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupNGroups ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupNGroups ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3145,7 +3182,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupTruncate ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupTruncate ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3158,7 +3195,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupFacet ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3171,7 +3208,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setGroupCachePercent ] { +        Method [ <internal:solr, inherits SolrQuery> public method setGroupCachePercent ] {            - Parameters [1] {              Parameter #0 [ <required> $percent ] @@ -3184,14 +3221,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &collapse ] { +        Method [ <internal:solr, inherits SolrQuery> public method collapse ] {            - Parameters [1] {              Parameter #0 [ <required> SolrCollapseFunction &$collapseFunction ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setExpand ] { +        Method [ <internal:solr, inherits SolrQuery> public method setExpand ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3204,7 +3241,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addExpandSortField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addExpandSortField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -3212,7 +3249,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeExpandSortField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeExpandSortField ] {            - Parameters [1] {              Parameter #0 [ <required> $field ] @@ -3225,7 +3262,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setExpandRows ] { +        Method [ <internal:solr, inherits SolrQuery> public method setExpandRows ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3238,7 +3275,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setExpandQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method setExpandQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $q ] @@ -3251,14 +3288,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addExpandFilterQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method addExpandFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeExpandFilterQuery ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeExpandFilterQuery ] {            - Parameters [1] {              Parameter #0 [ <required> $fq ] @@ -3271,7 +3308,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlight ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlight ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3284,14 +3321,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addHighlightField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addHighlightField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeHighlightField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeHighlightField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3304,7 +3341,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightSnippets ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightSnippets ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3319,7 +3356,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightFragsize ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightFragsize ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3334,7 +3371,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightMergeContiguous ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightMergeContiguous ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3349,7 +3386,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightRequireFieldMatch ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightRequireFieldMatch ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3362,7 +3399,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightMaxAnalyzedChars ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightMaxAnalyzedChars ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3375,7 +3412,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightAlternateField ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightAlternateField ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3390,7 +3427,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightMaxAlternateFieldLength ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightMaxAlternateFieldLength ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3405,7 +3442,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightFormatter ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightFormatter ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3420,7 +3457,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightSimplePre ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightSimplePre ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3435,7 +3472,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightSimplePost ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightSimplePost ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3450,7 +3487,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightFragmenter ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightFragmenter ] {            - Parameters [2] {              Parameter #0 [ <required> $value ] @@ -3465,7 +3502,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightUsePhraseHighlighter ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightUsePhraseHighlighter ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3478,7 +3515,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightHighlightMultiTerm ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightHighlightMultiTerm ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3491,7 +3528,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightRegexSlop ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightRegexSlop ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3504,7 +3541,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightRegexPattern ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightRegexPattern ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3517,7 +3554,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setHighlightRegexMaxAnalyzedChars ] { +        Method [ <internal:solr, inherits SolrQuery> public method setHighlightRegexMaxAnalyzedChars ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3530,7 +3567,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setStats ] { +        Method [ <internal:solr, inherits SolrQuery> public method setStats ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3543,14 +3580,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addStatsField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addStatsField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeStatsField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeStatsField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3563,14 +3600,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addStatsFacet ] { +        Method [ <internal:solr, inherits SolrQuery> public method addStatsFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeStatsFacet ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeStatsFacet ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3583,7 +3620,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMlt ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMlt ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3596,7 +3633,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltCount ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltCount ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3609,14 +3646,14 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addMltField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addMltField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ]            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeMltField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeMltField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3629,7 +3666,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &addMltQueryField ] { +        Method [ <internal:solr, inherits SolrQuery> public method addMltQueryField ] {            - Parameters [2] {              Parameter #0 [ <required> $field ] @@ -3637,7 +3674,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &removeMltQueryField ] { +        Method [ <internal:solr, inherits SolrQuery> public method removeMltQueryField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3650,7 +3687,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltMinTermFrequency ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltMinTermFrequency ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3663,7 +3700,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltMinDocFrequency ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltMinDocFrequency ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3676,7 +3713,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltMinWordLength ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltMinWordLength ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3689,7 +3726,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltMaxWordLength ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltMaxWordLength ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3702,7 +3739,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltMaxNumTokens ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltMaxNumTokens ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3715,7 +3752,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltMaxNumQueryTerms ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltMaxNumQueryTerms ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3728,7 +3765,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setMltBoost ] { +        Method [ <internal:solr, inherits SolrQuery> public method setMltBoost ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3741,7 +3778,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTerms ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTerms ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3754,7 +3791,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsField ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsField ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3767,7 +3804,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsLowerBound ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsLowerBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3780,7 +3817,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsUpperBound ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsUpperBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3793,7 +3830,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsIncludeLowerBound ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsIncludeLowerBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3806,7 +3843,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsIncludeUpperBound ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsIncludeUpperBound ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3819,7 +3856,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsMinCount ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsMinCount ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3832,7 +3869,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsMaxCount ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsMaxCount ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3845,7 +3882,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsPrefix ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsPrefix ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3858,7 +3895,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsLimit ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsLimit ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3871,7 +3908,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsReturnRaw ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsReturnRaw ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3884,7 +3921,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrQuery> public method &setTermsSort ] { +        Method [ <internal:solr, inherits SolrQuery> public method setTermsSort ] {            - Parameters [1] {              Parameter #0 [ <required> $value ] @@ -3897,7 +3934,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &setParam ] { +        Method [ <internal:solr, inherits SolrParams> public method setParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -3905,7 +3942,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &addParam ] { +        Method [ <internal:solr, inherits SolrParams> public method addParam ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -3958,7 +3995,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &add ] { +        Method [ <internal:solr, inherits SolrParams> public method add ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -3966,7 +4003,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:solr, inherits SolrParams> public method &set ] { +        Method [ <internal:solr, inherits SolrParams> public method set ] {            - Parameters [2] {              Parameter #0 [ <required> $name ] @@ -3983,12 +4020,96 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {        }      } +    Class [ <internal:solr> final class SolrExtractRequest ] { + +      - Constants [20] { +        Constant [ public string CAPTURE_ELEMENTS ] { capture } +        Constant [ public string CAPTURE_ATTRIBUTES ] { captureAttr } +        Constant [ public string COMMIT_WITHIN ] { commitWithin } +        Constant [ public string DATE_FORMATS ] { date.formats } +        Constant [ public string DEFAULT_FIELD ] { defaultField } +        Constant [ public string EXTRACT_ONLY ] { extractOnly } +        Constant [ public string EXTRACT_FORMAT ] { extractFormat } +        Constant [ public string IGNORE_TIKA_EXCEPTION ] { ignoreTikaException } +        Constant [ public string LITERALS_OVERRIDE ] { literalsOverride } +        Constant [ public string LOWERNAMES ] { lowernames } +        Constant [ public string MULTIPART_UPLOAD_LIMIT ] { multipartUploadLimitInKB } +        Constant [ public string PASSWORD_MAP_FILE ] { passwordsFile } +        Constant [ public string RESOURCE_NAME ] { resource.name } +        Constant [ public string RESOURCE_PASSWORD ] { resource.password } +        Constant [ public string TIKE_CONFIG ] { tika.config } +        Constant [ public string UNKNOWN_FIELD_PREFIX ] { uprefix } +        Constant [ public string XPATH_EXPRESSION ] { xpath } +        Constant [ public string FIELD_MAPPING_PREFIX ] { fmap. } +        Constant [ public string FIELD_BOOST_PREFIX ] { boost. } +        Constant [ public string LITERALS_PREFIX ] { literal. } +      } + +      - Static properties [0] { +      } + +      - Static methods [2] { +        Method [ <internal:solr> static public method createFromFile ] { + +          - Parameters [2] { +            Parameter #0 [ <required> $filename ] +            Parameter #1 [ <required> SolrModifiableParams &$params ] +          } +        } + +        Method [ <internal:solr> static public method createFromStream ] { + +          - Parameters [3] { +            Parameter #0 [ <required> $content ] +            Parameter #1 [ <required> $mime_type ] +            Parameter #2 [ <required> SolrModifiableParams &$params ] +          } +        } +      } + +      - Properties [1] { +        Property [ <default> private $_hashtable_index ] +      } + +      - Methods [5] { +        Method [ <internal:solr, ctor> private method __construct ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:solr, dtor> public method __destruct ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:solr> public method __clone ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:solr> public method __sleep ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:solr> public method __wakeup ] { + +          - Parameters [0] { +          } +        } +      } +    } +      Class [ <internal:solr> class SolrCollapseFunction ] {        - Constants [3] { -        Constant [ string NULLPOLICY_IGNORE ] { ignore } -        Constant [ string NULLPOLICY_EXPAND ] { expand } -        Constant [ string NULLPOLICY_COLLAPSE ] { collapse } +        Constant [ public string NULLPOLICY_IGNORE ] { ignore } +        Constant [ public string NULLPOLICY_EXPAND ] { expand } +        Constant [ public string NULLPOLICY_COLLAPSE ] { collapse }        }        - Static properties [0] { @@ -4116,8 +4237,8 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> abstract class SolrResponse ] {        - Constants [2] { -        Constant [ integer PARSE_SOLR_OBJ ] { 0 } -        Constant [ integer PARSE_SOLR_DOC ] { 1 } +        Constant [ public integer PARSE_SOLR_OBJ ] { 0 } +        Constant [ public integer PARSE_SOLR_DOC ] { 1 }        }        - Static properties [0] { @@ -4219,8 +4340,8 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> final class SolrQueryResponse extends SolrResponse ] {        - Constants [2] { -        Constant [ integer PARSE_SOLR_OBJ ] { 0 } -        Constant [ integer PARSE_SOLR_DOC ] { 1 } +        Constant [ public integer PARSE_SOLR_OBJ ] { 0 } +        Constant [ public integer PARSE_SOLR_DOC ] { 1 }        }        - Static properties [0] { @@ -4334,8 +4455,8 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> final class SolrUpdateResponse extends SolrResponse ] {        - Constants [2] { -        Constant [ integer PARSE_SOLR_OBJ ] { 0 } -        Constant [ integer PARSE_SOLR_DOC ] { 1 } +        Constant [ public integer PARSE_SOLR_OBJ ] { 0 } +        Constant [ public integer PARSE_SOLR_DOC ] { 1 }        }        - Static properties [0] { @@ -4449,8 +4570,8 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> final class SolrPingResponse extends SolrResponse ] {        - Constants [2] { -        Constant [ integer PARSE_SOLR_OBJ ] { 0 } -        Constant [ integer PARSE_SOLR_DOC ] { 1 } +        Constant [ public integer PARSE_SOLR_OBJ ] { 0 } +        Constant [ public integer PARSE_SOLR_DOC ] { 1 }        }        - Static properties [0] { @@ -4564,8 +4685,8 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {      Class [ <internal:solr> final class SolrGenericResponse extends SolrResponse ] {        - Constants [2] { -        Constant [ integer PARSE_SOLR_OBJ ] { 0 } -        Constant [ integer PARSE_SOLR_DOC ] { 1 } +        Constant [ public integer PARSE_SOLR_OBJ ] { 0 } +        Constant [ public integer PARSE_SOLR_DOC ] { 1 }        }        - Static properties [0] { @@ -4734,7 +4855,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {        }      } -    Class [ <internal:solr> class SolrException extends Exception ] { +    Class [ <internal:solr> class SolrException extends Exception implements Throwable ] {        - Constants [0] {        } @@ -4762,7 +4883,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { +        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] {              Parameter #0 [ <optional> $message ] @@ -4774,33 +4895,33 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Method [ <internal:Core, inherits Exception> public method __wakeup ] {          } -        Method [ <internal:Core, inherits Exception> final public method getMessage ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {          } -        Method [ <internal:Core, inherits Exception> final public method getCode ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {          } -        Method [ <internal:Core, inherits Exception> final public method getFile ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {          } -        Method [ <internal:Core, inherits Exception> final public method getLine ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTrace ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {          } -        Method [ <internal:Core, inherits Exception> final public method getPrevious ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {          } -        Method [ <internal:Core, inherits Exception> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {          }        }      } -    Class [ <internal:solr> class SolrIllegalOperationException extends SolrException ] { +    Class [ <internal:solr> class SolrIllegalOperationException extends SolrException implements Throwable ] {        - Constants [0] {        } @@ -4828,7 +4949,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { +        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] {              Parameter #0 [ <optional> $message ] @@ -4840,33 +4961,33 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Method [ <internal:Core, inherits Exception> public method __wakeup ] {          } -        Method [ <internal:Core, inherits Exception> final public method getMessage ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {          } -        Method [ <internal:Core, inherits Exception> final public method getCode ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {          } -        Method [ <internal:Core, inherits Exception> final public method getFile ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {          } -        Method [ <internal:Core, inherits Exception> final public method getLine ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTrace ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {          } -        Method [ <internal:Core, inherits Exception> final public method getPrevious ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {          } -        Method [ <internal:Core, inherits Exception> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {          }        }      } -    Class [ <internal:solr> class SolrIllegalArgumentException extends SolrException ] { +    Class [ <internal:solr> class SolrIllegalArgumentException extends SolrException implements Throwable ] {        - Constants [0] {        } @@ -4894,7 +5015,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { +        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] {              Parameter #0 [ <optional> $message ] @@ -4906,33 +5027,33 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Method [ <internal:Core, inherits Exception> public method __wakeup ] {          } -        Method [ <internal:Core, inherits Exception> final public method getMessage ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {          } -        Method [ <internal:Core, inherits Exception> final public method getCode ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {          } -        Method [ <internal:Core, inherits Exception> final public method getFile ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {          } -        Method [ <internal:Core, inherits Exception> final public method getLine ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTrace ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {          } -        Method [ <internal:Core, inherits Exception> final public method getPrevious ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {          } -        Method [ <internal:Core, inherits Exception> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {          }        }      } -    Class [ <internal:solr> class SolrClientException extends SolrException ] { +    Class [ <internal:solr> class SolrClientException extends SolrException implements Throwable ] {        - Constants [0] {        } @@ -4960,7 +5081,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { +        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] {              Parameter #0 [ <optional> $message ] @@ -4972,33 +5093,33 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Method [ <internal:Core, inherits Exception> public method __wakeup ] {          } -        Method [ <internal:Core, inherits Exception> final public method getMessage ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {          } -        Method [ <internal:Core, inherits Exception> final public method getCode ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {          } -        Method [ <internal:Core, inherits Exception> final public method getFile ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {          } -        Method [ <internal:Core, inherits Exception> final public method getLine ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTrace ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {          } -        Method [ <internal:Core, inherits Exception> final public method getPrevious ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {          } -        Method [ <internal:Core, inherits Exception> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {          }        }      } -    Class [ <internal:solr> class SolrServerException extends SolrException ] { +    Class [ <internal:solr> class SolrServerException extends SolrException implements Throwable ] {        - Constants [0] {        } @@ -5026,7 +5147,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { +        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] {              Parameter #0 [ <optional> $message ] @@ -5038,33 +5159,33 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Method [ <internal:Core, inherits Exception> public method __wakeup ] {          } -        Method [ <internal:Core, inherits Exception> final public method getMessage ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {          } -        Method [ <internal:Core, inherits Exception> final public method getCode ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {          } -        Method [ <internal:Core, inherits Exception> final public method getFile ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {          } -        Method [ <internal:Core, inherits Exception> final public method getLine ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTrace ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {          } -        Method [ <internal:Core, inherits Exception> final public method getPrevious ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {          } -        Method [ <internal:Core, inherits Exception> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {          }        }      } -    Class [ <internal:solr> class SolrMissingMandatoryParameterException extends SolrException ] { +    Class [ <internal:solr> class SolrMissingMandatoryParameterException extends SolrException implements Throwable ] {        - Constants [0] {        } @@ -5092,7 +5213,7 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {            }          } -        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { +        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] {              Parameter #0 [ <optional> $message ] @@ -5104,28 +5225,28 @@ Extension [ <persistent> extension #207 solr version 2.4.0 ] {          Method [ <internal:Core, inherits Exception> public method __wakeup ] {          } -        Method [ <internal:Core, inherits Exception> final public method getMessage ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {          } -        Method [ <internal:Core, inherits Exception> final public method getCode ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {          } -        Method [ <internal:Core, inherits Exception> final public method getFile ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {          } -        Method [ <internal:Core, inherits Exception> final public method getLine ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTrace ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {          } -        Method [ <internal:Core, inherits Exception> final public method getPrevious ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {          } -        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {          } -        Method [ <internal:Core, inherits Exception> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {          }        }      } | 
