Completed
Push — developer ( f53b91...475c9e )
by Błażej
386:14 queued 360:35
created
modules/IStorages/handlers/RecalculateStockHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
 		}
42 42
 	}
43 43
 
44
+	/**
45
+	 * @param string $action
46
+	 */
44 47
 	public function getInventoryDataAndSend(Vtiger_Record_Model $recordModel, $action)
45 48
 	{
46 49
 		$moduleName = $recordModel->getModuleName();
Please login to merge, or discard this patch.
modules/OSSTimeControl/actions/Calendar.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@
 block discarded – undo
109 109
 		$response->emit();
110 110
 	}
111 111
 
112
+	/**
113
+	 * @param string $datetime
114
+	 */
112 115
 	public function changeDateTime($datetime, $delta)
113 116
 	{
114 117
 		$date = new DateTime($datetime);
Please login to merge, or discard this patch.
modules/Portal/models/ListView.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -67,6 +67,9 @@
 block discarded – undo
67 67
 		return $query;
68 68
 	}
69 69
 
70
+	/**
71
+	 * @param Vtiger_Paging_Model $pagingModel
72
+	 */
70 73
 	public function calculatePageRange($record, $pagingModel)
71 74
 	{
72 75
 		$pageLimit = $pagingModel->getPageLimit();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
 	public function getListViewEntries(Vtiger_Paging_Model $pagingModel, $searchResult = false)
18 18
 	{
19
-		$listViewRecordModels =[];
19
+		$listViewRecordModels = [];
20 20
 		$moduleModel = Vtiger_Module_Model::getInstance('Portal');
21 21
 
22 22
 		$query = $this->getQuery();
Please login to merge, or discard this patch.
modules/Reservations/actions/Calendar.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@
 block discarded – undo
109 109
 		$response->emit();
110 110
 	}
111 111
 
112
+	/**
113
+	 * @param string $datetime
114
+	 */
112 115
 	public function changeDateTime($datetime, $delta)
113 116
 	{
114 117
 		$date = new DateTime($datetime);
Please login to merge, or discard this patch.
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/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.