Completed
Push — 7.x-1.x ( 5cd078...c92c99 )
by Brian
04:02 queued 01:39
created
modules/elastica/search_api_elasticsearch_elastica.api.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,6 @@
 block discarded – undo
22 22
  *
23 23
  * @param \Elastica\Query $elastica_query
24 24
  *   The Elastica query object to be altered.
25
- * @param SearchApiQueryInterface $query
26
- *   The original Search API query.
27 25
  */
28 26
 function hook_search_api_elasticsearch_elastica_query_alter(\Elastica\Query &$elastica_query, SearchApiQueryInterface $search_api_query) {
29 27
 
Please login to merge, or discard this patch.
modules/elastica/tests/phpunit/SearchApiElasticsearchElasticaTest.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
   /**
11 11
    * setUp
12 12
    *
13
-   * @param mixed $config
14 13
    * @access public
15 14
    * @return void
16 15
    */
Please login to merge, or discard this patch.
includes/SearchApiElasticsearchAbstractService.inc 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -337,6 +337,7 @@  discard block
 block discarded – undo
337 337
 
338 338
   /**
339 339
    * Helper function. Parse an option form element.
340
+   * @param string $key
340 341
    */
341 342
   protected function parseOptionFormElement($element, $key) {
342 343
     $children_keys = element_children($element);
@@ -483,6 +484,7 @@  discard block
 block discarded – undo
483 484
 
484 485
   /**
485 486
    * Helper function. Return a server option.
487
+   * @param integer $default
486 488
    */
487 489
   protected function getOption($option, $default = NULL) {
488 490
     $options = $this->getOptions();
@@ -692,6 +694,7 @@  discard block
 block discarded – undo
692 694
    * Helper function. Escape a field or index name.
693 695
    *
694 696
    * Force names to be strictly alphanumeric-plus-underscore.
697
+   * @param string $name
695 698
    */
696 699
   protected static function escapeName($name) {
697 700
     return preg_replace('/[^A-Za-z0-9_]+/', '', $name);
Please login to merge, or discard this patch.
modules/elastica/search_api_elasticsearch_elastica.drush.inc 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -94,6 +94,7 @@
 block discarded – undo
94 94
 
95 95
 /**
96 96
  * Downloads and extracts a tarball.
97
+ * @param string $url
97 98
  */
98 99
 function _search_api_elasticsearch_elastica_fetch_tar($url) {
99 100
   $filename = basename($url);
Please login to merge, or discard this patch.
modules/elastica/search_api_elasticsearch_elastica.module 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -151,6 +151,7 @@
 block discarded – undo
151 151
  *
152 152
  * @param array $form
153 153
  * @param array $default_values
154
+ * @param string $flag
154 155
  */
155 156
 function search_api_elasticsearch_elastica_return_form_options(&$form, &$form_state, $default_values = array(), $flag) {
156 157
   $default_options = $default_values + array(
Please login to merge, or discard this patch.