Completed
Push — master ( 1b8dcd...9c3366 )
by Jacob
04:35 queued 36s
created
collector/stream/DistanceCollector.class.inc.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
 		return self::run_row_query($query);
18 18
 	}
19 19
 
20
+	/**
21
+	 * @param string $date
22
+	 */
20 23
 	public static function getTweetByFields($date, $text)
21 24
 	{
22 25
 		$query = "SELECT * FROM `jpemeric_stream`.`twitter` WHERE `date` = '{$date}' && `text` = '{$text}' LIMIT 1";
Please login to merge, or discard this patch.
controller/sitemap/BlogSitemapController.class.inc.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@
 block discarded – undo
64 64
 		}
65 65
 	}
66 66
 
67
+	/**
68
+	 * @param string $changefreq
69
+	 */
67 70
 	private function add_paginated_pages($posts, $base_url, $changefreq, $rank)
68 71
 	{
69 72
 		switch($changefreq)
Please login to merge, or discard this patch.
utility/content/AutolinkTwitterHashContent.class.inc.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -35,6 +35,10 @@
 block discarded – undo
35 35
 		return;
36 36
 	}
37 37
 
38
+	/**
39
+	 * @param string $handle_link
40
+	 * @param string $handle_display
41
+	 */
38 42
 	private function get_replacement_link($handle_link, $handle_display)
39 43
 	{
40 44
 		return sprintf(self::$USER_LINK, $handle_link, $handle_display);
Please login to merge, or discard this patch.