Passed
Push — develop ( 190495...6fc664 )
by Jens
15:25
created
cloudcontrol/library/components/LanguageComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
     /**
106 106
      * Detect if the language is switched manually
107 107
      *
108
-     * @param $request
108
+     * @param Request $request
109 109
      */
110 110
     private function checkLanguageSwitch($request)
111 111
     {
Please login to merge, or discard this patch.
cloudcontrol/library/components/FormComponent.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     /**
134 134
      * Sets variables needed for rendering the form template
135
-     * @param $storage
135
+     * @param Storage $storage
136 136
      */
137 137
     private function initialize($storage)
138 138
     {
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
      * submitting the form
169 169
      *
170 170
      * @param $postValues
171
-     * @param $storage
171
+     * @param Storage $storage
172 172
      */
173 173
     protected function postSubmit($postValues, $storage)
174 174
     {}
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     /**
192 192
      * Checks if this form has been submitted
193 193
      *
194
-     * @param $request
194
+     * @param \library\cc\Request $request
195 195
      * @return bool
196 196
      */
197 197
     private function isFormSubmitted($request)
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     /**
203 203
      *
204 204
      *
205
-     * @param $request
205
+     * @param \library\cc\Request $request
206 206
      */
207 207
     private function getPostValues($request)
208 208
     {
Please login to merge, or discard this patch.
cloudcontrol/library/cc/cc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
  * @param array  $replace
117 117
  * @param string $delimiter
118 118
  *
119
- * @return mixed|string
119
+ * @return string
120 120
  */
121 121
 function slugify($str, $replace=array(), $delimiter='-') {
122 122
 	if( !empty($replace) ) {
Please login to merge, or discard this patch.
cloudcontrol/library/cc/errorhandler.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -149,6 +149,11 @@
 block discarded – undo
149 149
     }
150 150
 }
151 151
 
152
+/**
153
+ * @param string $message
154
+ * @param string $file
155
+ * @param integer $code
156
+ */
152 157
 function renderCliException($message, $file, $line, $code, $trace, $lines)
153 158
 {
154 159
     echo PHP_EOL;
Please login to merge, or discard this patch.