Passed
Push — api_discussion ( 924c63...9e3644 )
by
unknown
20:19
created
mod/gc_lang_url_handler/start.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
  * @param $type
15 15
  * @param $returnvalue
16 16
  * @param $params
17
- * @return False to stop processing the response, True will let elgg handle the response
17
+ * @return false|null to stop processing the response, True will let elgg handle the response
18 18
  */
19 19
 function global_url_handler($hook, $type, $returnvalue, $params) {
20 20
 
Please login to merge, or discard this patch.
mod/thewire_images/start.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
  *	Download an attachment: thewire_image/download/<guid>/<title>
83 83
  *
84 84
  * @param array $page From the page_handler function
85
- * @return bool
85
+ * @return boolean|null
86 86
  */
87 87
 function thewire_image_page_handler($page) {
88 88
 	
Please login to merge, or discard this patch.
mod/gcforums/start.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -606,6 +606,10 @@
 block discarded – undo
606 606
 
607 607
 
608 608
 /// recursively go through the nested forums to create the breadcrumb
609
+/**
610
+ * @param integer $forum_guid
611
+ * @param integer $recurse_forum_guid
612
+ */
609 613
 function assemble_nested_forums($breadcrumb, $forum_guid, $recurse_forum_guid) {
610 614
 	$lang = get_current_language();
611 615
 	$entity = get_entity($recurse_forum_guid);
Please login to merge, or discard this patch.