Passed
Push — develop ( a5e531...6c1b0f )
by Jens
03:22
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 * submitting the form
149 149
 	 *
150 150
 	 * @param $postValues
151
-	 * @param $storage
151
+	 * @param JsonStorage $storage
152 152
 	 */
153 153
 	protected function postSubmit($postValues, $storage)
154 154
 	{}
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 	}
319 319
 
320 320
 	/**
321
-	 * @param $form
321
+	 * @param string|null $form
322 322
 	 */
323 323
 	private function setFormParameter($form)
324 324
 	{
Please login to merge, or discard this patch.
cloudcontrol/library/search/Indexer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 	}
125 125
 
126 126
 	/**
127
-	 * @return int|mixed
127
+	 * @return integer
128 128
 	 */
129 129
 	private function getTotalDocumentCount()
130 130
 	{
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
 	/**
156 156
 	 * Adds a logline with the time since last log
157
-	 * @param $string
157
+	 * @param string $string
158 158
 	 */
159 159
 	private function addLog($string)
160 160
 	{
Please login to merge, or discard this patch.
cloudcontrol/library/cc/AutoloadUtil.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,6 +36,10 @@  discard block
 block discarded – undo
36 36
 		return false;
37 37
 	}
38 38
 
39
+	/**
40
+	 * @param boolean $throwException
41
+	 * @param string $file
42
+	 */
39 43
 	private static function handleUnloadableClass($class, $throwException, $rootPath, $file)
40 44
 	{
41 45
 		$debug_backtrace = debug_backtrace();
@@ -49,8 +53,8 @@  discard block
 block discarded – undo
49 53
 
50 54
 	/**
51 55
 	 * @param $class
52
-	 * @param $throwException
53
-	 * @param $file
56
+	 * @param boolean $throwException
57
+	 * @param string $file
54 58
 	 *
55 59
 	 * @return bool
56 60
 	 * @throws \Exception
@@ -76,7 +80,7 @@  discard block
 block discarded – undo
76 80
 	 * @param $file
77 81
 	 * @param $debug_backtrace
78 82
 	 *
79
-	 * @return bool
83
+	 * @return null|false
80 84
 	 */
81 85
 	private static function handleUnloadableClassWithBacktrace($class, $throwException, $rootPath, $file, $debug_backtrace)
82 86
 	{
Please login to merge, or discard this patch.