Completed
Push — issue/233 ( a6a112 )
by Tomas Norre
13:07
created
domain/queue/class.tx_crawler_domain_queue_repository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -132,6 +132,7 @@
 block discarded – undo
132 132
 	/**
133 133
 	 * Internal method to count items by a given where clause
134 134
 	 *
135
+	 * @param string $where
135 136
 	 */
136 137
 	protected function countItemsByWhereClause($where) {
137 138
 		$db 	= $this->getDB();
Please login to merge, or discard this patch.
domain/reason/class.tx_crawler_domain_reason.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 	 * This method is used to set the uid of the queue entry
104 104
 	 * where the reason is relevant for.
105 105
 	 *
106
-	 * @param int $entry_id
106
+	 * @param int $entry_uid
107 107
 	 */
108 108
 	public function setQueueEntryUid($entry_uid) {
109 109
 		$this->row['queue_entry_uid'] = $entry_uid;
Please login to merge, or discard this patch.
modfunc1/class.tx_crawler_modfunc1.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -709,6 +709,7 @@  discard block
 block discarded – undo
709 709
 	 * @param	array		Page row or set-id
710 710
 	 * @param	string		Title string
711 711
 	 * @param	int			Items per Page setting
712
+	 * @param string $titleString
712 713
 	 * @return	string		HTML <tr> content (one or more)
713 714
 	 */
714 715
 	function drawLog_addRows($pageRow_setId, $titleString, $itemsPerPage=10) {
@@ -1214,6 +1215,8 @@  discard block
 block discarded – undo
1214 1215
 	 * @param	string		Selector box name
1215 1216
 	 * @param	string		Selector box value (array for multiple...)
1216 1217
 	 * @param	boolean		If set, will draw multiple box.
1218
+	 * @param string $name
1219
+	 * @param integer $multiple
1217 1220
 	 * @return	string		HTML select element
1218 1221
 	 */
1219 1222
 	function selectorBox($optArray, $name, $value, $multiple)	{
Please login to merge, or discard this patch.
view/class.tx_crawler_view_pagination.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
 	 * Returns the total number of pages needed to  display all content which
124 124
 	 * is paginatable
125 125
 	 *
126
-	 * @return int
126
+	 * @return double
127 127
 	 */
128 128
 	public function getTotalPagesCount() {
129 129
 	 	return ceil($this->getTotalItemCount() / $this->getPerPage());
Please login to merge, or discard this patch.
view/process/class.tx_crawler_view_process_list.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,6 +111,7 @@  discard block
 block discarded – undo
111 111
 	 * Set the page id
112 112
 	 *
113 113
 	 * @param int page id
114
+	 * @param integer $pageId
114 115
 	 */
115 116
 	public function setPageId($pageId) {
116 117
 		$this->pageId = $pageId;
@@ -269,7 +270,7 @@  discard block
 block discarded – undo
269 270
 	 * Converts seconds into minutes
270 271
 	 *
271 272
 	 * @param int $seconds
272
-	 * @return int
273
+	 * @return double
273 274
 	 */
274 275
 	protected function asMinutes($seconds) {
275 276
 		return round($seconds / 60);
@@ -409,7 +410,7 @@  discard block
 block discarded – undo
409 410
 	 * just a wrapper should be done in a cleaner way
410 411
 	 * later on
411 412
 	 *
412
-	 * @param $label
413
+	 * @param string $label
413 414
 	 * @return string
414 415
 	 */
415 416
 	protected function getLLLabel($label) {
Please login to merge, or discard this patch.
Classes/Hooks/StaticFileCacheCreateUriHook.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      * @param string $uri
54 54
      * @param TypoScriptFrontendController $frontend
55 55
      *
56
-     * @return array
56
+     * @return string[]
57 57
      *
58 58
      * @throws \Exception
59 59
      *
Please login to merge, or discard this patch.
Classes/Utility/IconUtility.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      *
40 40
      * Wrapper around core functionality to keep compatibility with TYPO3 6.2
41 41
      *
42
-     * @param $table
42
+     * @param string $table
43 43
      * @param array $row
44 44
      * @return string
45 45
      */
Please login to merge, or discard this patch.