Passed
Push — developer ( c9d396...8e0a17 )
by Błażej
90:59 queued 76:12
created
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/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.