Commit 1e6c900d authored by Bas de Nooijer's avatar Bas de Nooijer

Added @since phpdoc to new methods

parent ce1d99f8
...@@ -249,6 +249,8 @@ class Solarium_Query_Helper ...@@ -249,6 +249,8 @@ class Solarium_Query_Helper
* The mode matching pattern can be customized by overriding the * The mode matching pattern can be customized by overriding the
* value of $this->_placeHolderPattern * value of $this->_placeHolderPattern
* *
* @since 1.1.0
*
* @param string $query * @param string $query
* @param array $parts Array of strings * @param array $parts Array of strings
* @return string * @return string
...@@ -264,6 +266,13 @@ class Solarium_Query_Helper ...@@ -264,6 +266,13 @@ class Solarium_Query_Helper
); );
} }
/**
* Render placeholders in a querystring
*
* @throws Solarium_Exception
* @param array $matches
* @return string
*/
protected function _renderPlaceHolder($matches) protected function _renderPlaceHolder($matches)
{ {
$partNumber = $matches[2]; $partNumber = $matches[2];
......
...@@ -290,6 +290,8 @@ class Solarium_Query_Select_Component_DisMax extends Solarium_Query_Select_Compo ...@@ -290,6 +290,8 @@ class Solarium_Query_Select_Component_DisMax extends Solarium_Query_Select_Compo
* *
* Can be used to enable edismax * Can be used to enable edismax
* *
* @since 1.1.0
*
* @param string $parser * @param string $parser
* @return Solarium_Query_Select_Component_DisMax Provides fluent interface * @return Solarium_Query_Select_Component_DisMax Provides fluent interface
*/ */
...@@ -301,6 +303,8 @@ class Solarium_Query_Select_Component_DisMax extends Solarium_Query_Select_Compo ...@@ -301,6 +303,8 @@ class Solarium_Query_Select_Component_DisMax extends Solarium_Query_Select_Compo
/** /**
* Get QueryParser option * Get QueryParser option
* *
* @since 1.1.0
*
* @return string * @return string
*/ */
public function getQueryParser() public function getQueryParser()
......
...@@ -43,6 +43,8 @@ ...@@ -43,6 +43,8 @@
* See the Solr wiki for more info about this functionality * See the Solr wiki for more info about this functionality
* *
* @link http://wiki.apache.org/solr/FieldCollapsing * @link http://wiki.apache.org/solr/FieldCollapsing
*
* @since 1.1.0
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -392,6 +392,8 @@ class Solarium_Query_Update extends Solarium_Query ...@@ -392,6 +392,8 @@ class Solarium_Query_Update extends Solarium_Query
* You can optionally directly supply the fields and boosts * You can optionally directly supply the fields and boosts
* to get a ready-made document instance for direct use in an add command * to get a ready-made document instance for direct use in an add command
* *
* @since 1.1.0
*
* @param array $fields * @param array $fields
* @param array $boosts * @param array $boosts
* @return Solarium_Document_ReadWrite * @return Solarium_Document_ReadWrite
......
...@@ -39,6 +39,8 @@ ...@@ -39,6 +39,8 @@
/** /**
* Select component grouping result * Select component grouping result
* *
* @since 1.1.0
*
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
*/ */
......
...@@ -39,6 +39,8 @@ ...@@ -39,6 +39,8 @@
/** /**
* Select component grouping field group result * Select component grouping field group result
* *
* @since 1.1.0
*
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
*/ */
......
...@@ -39,6 +39,8 @@ ...@@ -39,6 +39,8 @@
/** /**
* Select component grouping query group result * Select component grouping query group result
* *
* @since 1.1.0
*
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
*/ */
......
...@@ -39,6 +39,8 @@ ...@@ -39,6 +39,8 @@
/** /**
* Select component grouping field value group result * Select component grouping field value group result
* *
* @since 1.1.0
*
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment