Completed
Pull Request — developer (#8838)
by Sławomir
546:25 queued 528:51
created
modules/SMSNotifier/providers/Basic.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 * @param string $key
67 67
 	 * @param mixed  $value
68 68
 	 *
69
-	 * @return \self
69
+	 * @return SMSNotifier_Basic_Provider
70 70
 	 */
71 71
 	public function set($key, $value)
72 72
 	{
@@ -142,8 +142,6 @@  discard block
 block discarded – undo
142 142
 	/**
143 143
 	 * Function to handle SMS Send operation.
144 144
 	 *
145
-	 * @param string          $message
146
-	 * @param string|string[] $toNumbers
147 145
 	 */
148 146
 	public function send()
149 147
 	{
Please login to merge, or discard this patch.
modules/SSalesProcesses/dashboards/ActualSalesOfTeam.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,9 +15,8 @@
 block discarded – undo
15 15
 	/**
16 16
 	 * Function to get search params in address listview.
17 17
 	 *
18
-	 * @param int    $owner  number id of user
19
-	 * @param string $status
20 18
 	 *
19
+	 * @param string $time
21 20
 	 * @return string
22 21
 	 */
23 22
 	public function getSearchParams($row, $time)
Please login to merge, or discard this patch.
modules/SSalesProcesses/SSalesProcesses.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -195,6 +195,7 @@
 block discarded – undo
195 195
 	 * @param int   $id                    - ssalesprocessesid
196 196
 	 * @param array $parentSSalesProcesses - Array of all the parent sales
197 197
 	 *                                     returns All the parent Sales of the given ssalesprocessesid in array format
198
+	 * @param integer[] $encounteredSalesProcesses
198 199
 	 */
199 200
 	public function getParentSales($id, &$parentSSalesProcesses, &$encounteredSalesProcesses, $depthBase = 0)
200 201
 	{
Please login to merge, or discard this patch.
modules/Users/models/Module.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 * Check mail exist.
135 135
 	 *
136 136
 	 * @param string    $email
137
-	 * @param int|false $userId
137
+	 * @param integer $userId
138 138
 	 *
139 139
 	 * @return bool
140 140
 	 */
@@ -152,9 +152,9 @@  discard block
 block discarded – undo
152 152
 	 * Validation of user name.
153 153
 	 *
154 154
 	 * @param string    $userName
155
-	 * @param int|false $userId
155
+	 * @param integer $userId
156 156
 	 *
157
-	 * @return bool
157
+	 * @return string|false
158 158
 	 */
159 159
 	public static function checkUserName($userName, $userId = false)
160 160
 	{
Please login to merge, or discard this patch.
modules/Users/models/Record.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -834,6 +834,10 @@  discard block
 block discarded – undo
834 834
 	 * to whom records should be assigned
835 835
 	 */
836 836
 
837
+	/**
838
+	 * @param integer $userId
839
+	 * @param integer $newOwnerId
840
+	 */
837 841
 	public static function deleteUserPermanently($userId, $newOwnerId)
838 842
 	{
839 843
 		$db = App\Db::getInstance();
@@ -1025,7 +1029,7 @@  discard block
 block discarded – undo
1025 1029
 	/**
1026 1030
 	 * Get authorization detail.
1027 1031
 	 *
1028
-	 * @return array
1032
+	 * @return string
1029 1033
 	 */
1030 1034
 	protected function getAuthDetail()
1031 1035
 	{
Please login to merge, or discard this patch.
modules/Vtiger/actions/GetData.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
 	 *
18 18
 	 * @throws \Exception\NoPermittedToRecord
19 19
 	 *
20
-	 * @return bool
20
+	 * @return boolean|null
21 21
 	 */
22 22
 	public function checkPermission(\App\Request $request)
23 23
 	{
Please login to merge, or discard this patch.
modules/Vtiger/actions/PDF.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@
 block discarded – undo
217 217
 	 *
218 218
 	 * @param \App\Request $request
219 219
 	 *
220
-	 * @return bool true if valid template exists for this record
220
+	 * @return boolean|null true if valid template exists for this record
221 221
 	 */
222 222
 	public function hasValidTemplate(\App\Request $request)
223 223
 	{
Please login to merge, or discard this patch.
modules/Vtiger/inventoryfields/Basic.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@
 block discarded – undo
324 324
 	 * @param \App\Request $request
325 325
 	 * @param int          $i
326 326
 	 *
327
-	 * @return bool
327
+	 * @return false|null
328 328
 	 */
329 329
 	public function getValueFromRequest(&$insertData, \App\Request $request, $i)
330 330
 	{
Please login to merge, or discard this patch.
modules/Vtiger/inventoryfields/Comment.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@
 block discarded – undo
41 41
 
42 42
 	/**
43 43
 	 * {@inheritdoc}
44
+	 * @param string $columnName
44 45
 	 */
45 46
 	public function validate($value, $columnName, $isUserFormat = false)
46 47
 	{
Please login to merge, or discard this patch.