Test Setup Failed
Push — developer ( cb8dbe...454066 )
by Błażej
17:42 queued 05:42
created
modules/com_vtiger_workflow/tasks/VTUpdateRelatedFieldTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 	 * @param string[]            $relatedData
86 86
 	 * @param string              $fieldValue
87 87
 	 *
88
-	 * @return bool
88
+	 * @return false|null
89 89
 	 */
90 90
 	private function updateRecords($recordModel, $relatedData, $fieldValue)
91 91
 	{
Please login to merge, or discard this patch.
modules/com_vtiger_workflow/VTTaskQueue.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	 * Queue a task for execution.
18 18
 	 *
19 19
 	 * @param $taskId The id of the task to queue
20
-	 * @param $entityId The id of the crm entity the task is assiciated with
20
+	 * @param integer $entityId The id of the crm entity the task is assiciated with
21 21
 	 * @param $when The time after which the task should be executed. This is
22 22
 	 *        an optional value with a default value of 0
23 23
 	 */
Please login to merge, or discard this patch.
modules/com_vtiger_workflow/WorkFlowScheduler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
207 207
 	/**
208 208
 	 * Special Date functions.
209 209
 	 *
210
-	 * @return array
210
+	 * @return string[]
211 211
 	 */
212 212
 	public function specialDateTimeOperator()
213 213
 	{
Please login to merge, or discard this patch.
modules/Import/models/Module.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
 	/**
133 133
 	 * Function returns list of templates to import.
134 134
 	 *
135
-	 * @param type $moduleName
135
+	 * @param string $moduleName
136 136
 	 *
137 137
 	 * @return array
138 138
 	 */
Please login to merge, or discard this patch.
modules/Import/readers/FileReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
 	 *
162 162
 	 * @param array $data
163 163
 	 *
164
-	 * @return int
164
+	 * @return string
165 165
 	 */
166 166
 	public function addRecordToDB($data)
167 167
 	{
Please login to merge, or discard this patch.
modules/MultiCompany/MultiCompany.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -183,6 +183,7 @@
 block discarded – undo
183 183
 	 * @param int   $id     - multicompanyid
184 184
 	 * @param array $parent - Array of all the parent sales
185 185
 	 *                      returns All the parent  f the given multicompanyid in array format
186
+	 * @param integer[] $encountered
186 187
 	 * @YTTODO to rebuild
187 188
 	 */
188 189
 	public function getParent($id, &$parent, &$encountered, $depthBase = 0)
Please login to merge, or discard this patch.
modules/OpenStreetMap/models/Coordinate.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	/**
15 15
 	 * Function to get instance.
16 16
 	 *
17
-	 * @return \self
17
+	 * @return OpenStreetMap_Coordinate_Model
18 18
 	 */
19 19
 	public static function getInstance()
20 20
 	{
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
 	/**
597 597
 	 * Adding records to the clipboard.
598 598
 	 *
599
-	 * @param type $record
599
+	 * @param integer $record
600 600
 	 */
601 601
 	public function addCache($record)
602 602
 	{
Please login to merge, or discard this patch.
modules/OSSMail/models/Mail.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 	/**
44 44
 	 * Set account.
45 45
 	 *
46
-	 * @param array $account
46
+	 * @param integer $account
47 47
 	 */
48 48
 	public function setAccount($account)
49 49
 	{
Please login to merge, or discard this patch.
modules/OSSMailScanner/models/EmailScannerAction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
  */
10 10
 class OSSMailScanner_EmailScannerAction_Model
11 11
 {
12
+	/**
13
+	 * @param string $moduleName
14
+	 */
12 15
 	public function process(OSSMail_Mail_Model $mail, $moduleName)
13 16
 	{
14 17
 		$mailId = $mail->getMailCrmId();
Please login to merge, or discard this patch.