Completed
Pull Request — developer (#8277)
by Sławomir
42:29 queued 14:32
created
modules/ModTracker/models/Field.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@  discard block
 block discarded – undo
14 14
 	 * Function to set parent to this model.
15 15
 	 *
16 16
 	 * @param Vtiger_Record_Model
17
+	 * @param ModTracker_Record_Model $parent
17 18
 	 */
18 19
 	public function setParent($parent)
19 20
 	{
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 	 * Function to set Field instance.
37 38
 	 *
38 39
 	 * @param Vtiger_Field_Model
40
+	 * @param Vtiger_Field_Model $fieldModel
39 41
 	 */
40 42
 	public function setFieldInstance($fieldModel)
41 43
 	{
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/Notification/cron/Notifications.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -88,9 +88,6 @@
 block discarded – undo
88 88
 	/**
89 89
 	 * Function get date.
90 90
 	 *
91
-	 * @param string $currentTime
92
-	 * @param string $timestampEndDate
93
-	 * @param int    $frequency
94 91
 	 */
95 92
 	public function markAsRead()
96 93
 	{
Please login to merge, or discard this patch.
modules/Notification/models/Record.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	/**
37 37
 	 * Title.
38 38
 	 *
39
-	 * @return string
39
+	 * @return boolean
40 40
 	 */
41 41
 	public function getTitle()
42 42
 	{
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	/**
84 84
 	 * Return message of notification.
85 85
 	 *
86
-	 * @return string
86
+	 * @return boolean
87 87
 	 */
88 88
 	public function getMessage()
89 89
 	{
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.
modules/PBXManager/connectors/PBXManager.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,6 @@
 block discarded – undo
314 314
 	/**
315 315
 	 * Function to respond for outgoing calls.
316 316
 	 *
317
-	 * @param \App\Request $details
318 317
 	 */
319 318
 	public function respondToOutgoingCall($to)
320 319
 	{
Please login to merge, or discard this patch.
modules/PBXManager/models/Record.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@  discard block
 block discarded – undo
15 15
 	const LOOKUP_TABLE_NAME = 'vtiger_pbxmanager_phonelookup';
16 16
 	const ENTITY_TABLE_NAME = 'vtiger_crmentity';
17 17
 
18
+	/**
19
+	 * @param string $moduleName
20
+	 */
18 21
 	public static function getCleanInstance($moduleName)
19 22
 	{
20 23
 		return new self();
@@ -234,6 +237,12 @@  discard block
 block discarded – undo
234 237
 	}
235 238
 
236 239
 	// Because, User is not related to crmentity
240
+
241
+	/**
242
+	 * @param integer $uitype
243
+	 * @param string $value
244
+	 * @param string $module
245
+	 */
237 246
 	public function buildSearchQueryWithUIType($uitype, $value, $module)
238 247
 	{
239 248
 		if (empty($value)) {
Please login to merge, or discard this patch.