Completed
Pull Request — developer (#8928)
by Sławomir
91:37 queued 72:26
created
modules/Settings/Mail/models/Config.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 		])->execute();
21 21
 	}
22 22
 
23
+	/**
24
+	 * @param string $type
25
+	 */
23 26
 	public static function getConfig($type)
24 27
 	{
25 28
 		$config = [];
Please login to merge, or discard this patch.
modules/Settings/Menu/models/Record.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -160,6 +160,9 @@
 block discarded – undo
160 160
 		}
161 161
 	}
162 162
 
163
+	/**
164
+	 * @param integer $parent
165
+	 */
163 166
 	public function getChildMenu($roleId, $parent)
164 167
 	{
165 168
 		$settingsModel = Settings_Menu_Module_Model::getInstance();
Please login to merge, or discard this patch.
modules/Assets/dashboards/ExpiringSoldProducts.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
 		}
33 33
 	}
34 34
 
35
+	/**
36
+	 * @param Vtiger_Widget_Model $widget
37
+	 */
35 38
 	public static function getData(\App\Request $request, $widget)
36 39
 	{
37 40
 		$fields = ['id', 'assetname', 'dateinservice', 'parent_id'];
Please login to merge, or discard this patch.
modules/Settings/MappedFields/views/Edit.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
 		$viewer->view('EditHeader.tpl', $request->getModule(false));
31 31
 	}
32 32
 
33
+	/**
34
+	 * @param string $step
35
+	 */
33 36
 	public function step($step, \App\Request $request)
34 37
 	{
35 38
 		$viewer = $this->getViewer($request);
Please login to merge, or discard this patch.
modules/Vtiger/actions/Inventory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -130,6 +130,9 @@
 block discarded – undo
130 130
 		$response->emit();
131 131
 	}
132 132
 
133
+	/**
134
+	 * @param string $moduleName
135
+	 */
133 136
 	public function getRecordDetail($recordId, $currencyId, $moduleName, $fieldName)
134 137
 	{
135 138
 		$recordModel = Vtiger_Record_Model::getInstanceById($recordId);
Please login to merge, or discard this patch.
modules/Vtiger/models/TransferOwnership.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -98,6 +98,9 @@  discard block
 block discarded – undo
98 98
 		}
99 99
 	}
100 100
 
101
+	/**
102
+	 * @param string $module
103
+	 */
101 104
 	public static function getInstance($module)
102 105
 	{
103 106
 		$instance = Vtiger_Cache::get('transferOwnership', $module);
@@ -150,6 +153,9 @@  discard block
 block discarded – undo
150 153
 		return $relatedModules;
151 154
 	}
152 155
 
156
+	/**
157
+	 * @param string $findModule
158
+	 */
153 159
 	public function getRelatedColumnName($relatedModule, $findModule)
154 160
 	{
155 161
 		$relatedModuleModel = Vtiger_Module_Model::getInstance($relatedModule);
Please login to merge, or discard this patch.
modules/Settings/PDF/views/Edit.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
 		$viewer->view('EditHeader.tpl', $request->getModule(false));
31 31
 	}
32 32
 
33
+	/**
34
+	 * @param string $step
35
+	 */
33 36
 	public function step($step, \App\Request $request)
34 37
 	{
35 38
 		$viewer = $this->getViewer($request);
Please login to merge, or discard this patch.
modules/ModTracker/models/Relation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
 		return $this->getLinkedRecord()->getName();
18 18
 	}
19 19
 
20
+	/**
21
+	 * @param ModTracker_Record_Model $parent
22
+	 */
20 23
 	public function setParent($parent)
21 24
 	{
22 25
 		$this->parent = $parent;
Please login to merge, or discard this patch.
modules/Vtiger/models/ExportToXml.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -107,6 +107,9 @@  discard block
 block discarded – undo
107 107
 		return html_entity_decode($value);
108 108
 	}
109 109
 
110
+	/**
111
+	 * @param string $fileName
112
+	 */
110 113
 	public function outputFile($fileName)
111 114
 	{
112 115
 		header("Content-Disposition:attachment;filename=$fileName.xml");
@@ -119,6 +122,9 @@  discard block
 block discarded – undo
119 122
 		unlink($this->tmpXmlPath);
120 123
 	}
121 124
 
125
+	/**
126
+	 * @param string $fileName
127
+	 */
122 128
 	protected function outputZipFile($fileName)
123 129
 	{
124 130
 		$zipName = 'cache/import/' . uniqid() . '.zip';
Please login to merge, or discard this patch.