Passed
Push — stats-page-remove-member-count ( 4c6571 )
by
unknown
26:50
created
mod/file/start.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -298,6 +298,9 @@
 block discarded – undo
298 298
 	return elgg_view('file/typecloud', $params);
299 299
 }
300 300
 
301
+/**
302
+ * @param boolean $friends
303
+ */
301 304
 function file_type_cloud_get_url($type, $friends) {
302 305
 	$url = elgg_get_site_url() . 'file/search?subtype=file';
303 306
 
Please login to merge, or discard this patch.
mod/file_tools/lib/page_handlers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  *
9 9
  * @param array $page page elements
10 10
  *
11
- * @return bool
11
+ * @return null|boolean
12 12
  */
13 13
 function file_tools_page_handler($page) {
14 14
 	$include_file = false;
Please login to merge, or discard this patch.
mod/gc_api/lib/blog.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
 
46 46
 	return $output;
47 47
 }
48
+/**
49
+ * @param ElggEntity $entity
50
+ */
48 51
 function get_blog($entity)
49 52
 {
50 53
 	/*
Please login to merge, or discard this patch.
mod/gc_communities/views/default/widgets/filtered_events_index/content.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -12,6 +12,11 @@
 block discarded – undo
12 12
 require_once($CONFIG->pluginspath.'event_calendar/models/model.php');
13 13
 
14 14
 if (!function_exists('getLastDayOfMonth')) {
15
+
16
+	/**
17
+	 * @param string $month
18
+	 * @param string $year
19
+	 */
15 20
 	function getLastDayOfMonth($month, $year)
16 21
 	{
17 22
 		return idate('d', mktime(0, 0, 0, ($month + 1), 0, $year));
Please login to merge, or discard this patch.