Completed
Push — master ( 092229...77167d )
by Mike
05:09
created
src/Cache/Cache.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     }
24 24
 
25 25
     /**
26
-     * @param $key
26
+     * @param string $key
27 27
      *
28 28
      * @return bool
29 29
      */
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @param $key
40
+     * @param string $key
41 41
      * @param null $default
42 42
      *
43 43
      * @return mixed
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @param $key
59
+     * @param string $key
60 60
      * @param $value
61 61
      * @param null $ttl
62 62
      *
Please login to merge, or discard this patch.
src/Data/Manager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      *
44 44
      * Examples: 7.6.1 -> 7.6.1.0, 7.7 -> 7.7.1, 7.8 -> 7.8.0.0
45 45
      *
46
-     * @param $flav
46
+     * @param string $flav
47 47
      * @param null $baseVersion
48 48
      *
49 49
      * @return mixed
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /**
100 100
      * Gets all required information to perform health check.
101 101
      *
102
-     * @param $version
102
+     * @param string $version
103 103
      *
104 104
      * @return mixed
105 105
      */
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Gets all required information to perform upgrade.
113 113
      *
114
-     * @param $version
114
+     * @param string $version
115 115
      *
116 116
      * @return mixed
117 117
      */
Please login to merge, or discard this patch.
src/Data/Provider/Memory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     /**
69 69
      * Gets data from memory by key.
70 70
      *
71
-     * @param $key
71
+     * @param string $key
72 72
      * @param null $default
73 73
      *
74 74
      * @return mixed|null
Please login to merge, or discard this patch.
src/Element/Section/UpgradeChanges.php 1 patch
Doc Comments   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Get all available SugarCRM versions (sorted ASC).
56 56
      *
57
-     * @param mixed $flav
58
-     * @param mixed $pathToUpgradePackage
57
+     * @param Context $pathToUpgradePackage
59 58
      *
60 59
      * @return mixed
61 60
      */
@@ -75,7 +74,7 @@  discard block
 block discarded – undo
75 74
      *
76 75
      * @param string $pathToUpgradePackage
77 76
      *
78
-     * @return mixed
77
+     * @return string
79 78
      */
80 79
     public function getListOfDeletedFiles($pathToUpgradePackage)
81 80
     {
@@ -87,7 +86,7 @@  discard block
 block discarded – undo
87 86
      *
88 87
      * @param string $pathToUpgradePackage
89 88
      *
90
-     * @return mixed
89
+     * @return string
91 90
      */
92 91
     public function getListOfModifiedFiles($pathToUpgradePackage)
93 92
     {
@@ -99,7 +98,7 @@  discard block
 block discarded – undo
99 98
      *
100 99
      * @param string $pathToUpgradePackage
101 100
      *
102
-     * @return mixed
101
+     * @return string
103 102
      */
104 103
     public function getListOfScripts($pathToUpgradePackage)
105 104
     {
@@ -111,7 +110,7 @@  discard block
 block discarded – undo
111 110
      *
112 111
      * @param string $pathToUpgradePackage
113 112
      *
114
-     * @return mixed
113
+     * @return string
115 114
      */
116 115
     public function getListOfSQLScripts($pathToUpgradePackage)
117 116
     {
Please login to merge, or discard this patch.
src/Template/RendererAwareInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -4,5 +4,8 @@
 block discarded – undo
4 4
 
5 5
 interface RendererAwareInterface
6 6
 {
7
+    /**
8
+     * @return void
9
+     */
7 10
     public function setRenderer(RendererInterface $renderer);
8 11
 }
Please login to merge, or discard this patch.
src/Data/Provider/SupportSugarcrm.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     /**
224 224
      * Returns the result (response body) of GET request.
225 225
      *
226
-     * @param $url
226
+     * @param string $url
227 227
      *
228 228
      * @return string
229 229
      */
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     }
236 236
 
237 237
     /**
238
-     * @param $version
238
+     * @param string $version
239 239
      *
240 240
      * @return string
241 241
      */
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
     }
246 246
 
247 247
     /**
248
-     * @param $version
248
+     * @param string $version
249 249
      *
250 250
      * @return string
251 251
      */
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
      *
316 316
      * @param $keyParts
317 317
      *
318
-     * @return mixed
318
+     * @return string
319 319
      */
320 320
     private function getCacheKey(array $keyParts)
321 321
     {
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
     /**
330 330
      * Lightweight HTML purifier.
331 331
      *
332
-     * @param $html
332
+     * @param string $html
333 333
      * @param string $url
334 334
      * @param array  $options
335 335
      *
Please login to merge, or discard this patch.
src/Cache/Adapter/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param string $key
38
-     * @param null   $default
38
+     * @param File   $default
39 39
      *
40 40
      * @return bool|mixed|null
41 41
      */
Please login to merge, or discard this patch.
src/Formatter/FormatterInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -4,9 +4,20 @@
 block discarded – undo
4 4
 
5 5
 interface FormatterInterface
6 6
 {
7
+    /**
8
+     * @param string $text
9
+     *
10
+     * @return string
11
+     */
7 12
     public function asTitle($text, $level = 1);
8 13
 
14
+    /**
15
+     * @return string
16
+     */
9 17
     public function asBody($text);
10 18
 
19
+    /**
20
+     * @return string
21
+     */
11 22
     public function getDelimiter();
12 23
 }
Please login to merge, or discard this patch.
src/Template/RendererInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,8 +7,9 @@
 block discarded – undo
7 7
     /**
8 8
      * Renders template.
9 9
      *
10
-     * @param $name
10
+     * @param string $name
11 11
      * @param $arguments
12
+     * @return string
12 13
      */
13 14
     public function render($name, $arguments);
14 15
 }
Please login to merge, or discard this patch.