Completed
Push — master ( 57b1db...16daf9 )
by Mike
03:22
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/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/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/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.
src/Updater/Adapter/AdapterInterface.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -6,13 +6,30 @@
 block discarded – undo
6 6
 
7 7
 interface AdapterInterface
8 8
 {
9
+    /**
10
+     * @return boolean
11
+     */
9 12
     public function hasUpdate();
10 13
 
14
+    /**
15
+     * @return string
16
+     */
11 17
     public function getOldVersion();
12 18
 
19
+    /**
20
+     * @return string
21
+     */
13 22
     public function getNewVersion();
14 23
 
24
+    /**
25
+     * @param string $stability
26
+     *
27
+     * @return boolean
28
+     */
15 29
     public function update($stability = Updater::STABILITY_ANY);
16 30
 
31
+    /**
32
+     * @return boolean
33
+     */
17 34
     public function rollback();
18 35
 }
Please login to merge, or discard this patch.
src/Updater/Adapter/HumbugAdapter.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @return mixed
35
+     * @return string
36 36
      */
37 37
     public function getOldVersion()
38 38
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @return mixed
43
+     * @return string
44 44
      */
45 45
     public function getNewVersion()
46 46
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param $stability
78
+     * @param string $stability
79 79
      *
80 80
      * @return string
81 81
      */
Please login to merge, or discard this patch.
src/Data/Manager.php 1 patch
Doc Comments   +4 added lines, -4 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
      */
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      *
126 126
      * @param Upgrade $context
127 127
      *
128
-     * @return mixed
128
+     * @return Upgrade
129 129
      */
130 130
     public function getPotentiallyBrokenCustomizations(Upgrade $context)
131 131
     {
Please login to merge, or discard this patch.