Passed
Pull Request — developer (#15404)
by Arkadiusz
14:49
created
api/webservice/WebserviceStandard/Save.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 	{
58 58
 		$fieldModelList = $this->record->getModule()->getFields();
59 59
 		$requestKeys = $request->getAllRaw();
60
-		unset($requestKeys['module'],$requestKeys['action'],$requestKeys['record']);
60
+		unset($requestKeys['module'], $requestKeys['action'], $requestKeys['record']);
61 61
 		foreach ($fieldModelList as $fieldName => $fieldModel) {
62 62
 			if (!$fieldModel->isWritable()) {
63 63
 				continue;
Please login to merge, or discard this patch.
api/webservice/WebservicePremium/BaseModule/Pdf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 			$fileName .= ($increment[$fileName]++ > 0 ? '_' . $increment[$fileName] : '') . '.pdf';
66 66
 
67 67
 			$filePath = $template->getPath();
68
-			$pdfFiles[] = ['path' => $filePath,	'name' => $fileName];
68
+			$pdfFiles[] = ['path' => $filePath, 'name' => $fileName];
69 69
 			$pdf->output($filePath, 'F');
70 70
 		}
71 71
 		if (\count($pdfFiles) > 1) {
Please login to merge, or discard this patch.
modules/com_vtiger_workflow/tasks/VTUpdateRelatedFieldTask.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 						if ($fieldModel->isEditable()) {
68 68
 							$fieldModel->getUITypeModel()->validate($fieldValue);
69 69
 							$relRecordModel->set($relatedData[2], $fieldValue);
70
-							if(false !== $relRecordModel->getPreviousValue($relatedData[2])){
70
+							if (false !== $relRecordModel->getPreviousValue($relatedData[2])) {
71 71
 								$relRecordModel->setHandlerExceptions(['disableHandlerClasses' => ['Vtiger_Workflow_Handler']]);
72 72
 								$relRecordModel->save();
73 73
 							}
Please login to merge, or discard this patch.
modules/Vtiger/uitypes/MultiReferenceValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 	public static function setRecordToCron($moduleName, $destModule, $recordId, $type = 1)
136 136
 	{
137 137
 		$data = ['source_module' => $moduleName, 'dest_module' => $destModule, 'lastid' => $recordId, 'type' => $type];
138
-		if(!(new \App\Db\Query())->from('s_#__multireference')->where($data)->exists()){
138
+		if (!(new \App\Db\Query())->from('s_#__multireference')->where($data)->exists()) {
139 139
 			\App\Db::getInstance()->createCommand()->insert('s_#__multireference', $data)->execute();
140 140
 		}
141 141
 	}
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 		$tabIds = (new \App\Db\Query())
227 227
 			->select(['fieldid', 'tabid'])
228 228
 			->from('vtiger_field')
229
-			->where(['and',	['<>', 'presence', 1], ['uitype' => $fieldModel->getUIType()],	['and', ['like', 'fieldparams', '"field":"' . $fieldModel->getId() . '"']]
229
+			->where(['and', ['<>', 'presence', 1], ['uitype' => $fieldModel->getUIType()], ['and', ['like', 'fieldparams', '"field":"' . $fieldModel->getId() . '"']]
230 230
 			])->createCommand()->queryAllByGroup();
231 231
 		foreach ($tabIds as $fieldId => $tabId) {
232 232
 			$sourceModule = \App\Module::getModuleName($tabId);
Please login to merge, or discard this patch.