Completed
Pull Request — 1.0 (#1072)
by
unknown
02:16
created
Imagine/Cache/Resolver/CacheResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
      * Save the given content to the cache and update the cache index.
193 193
      *
194 194
      * @param string $cacheKey
195
-     * @param mixed  $content
195
+     * @param string  $content
196 196
      *
197 197
      * @return bool
198 198
      */
Please login to merge, or discard this patch.
Imagine/Cache/Resolver/AmazonS3Resolver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      *
174 174
      * @param string $path
175 175
      *
176
-     * @return string
176
+     * @return \CFResponse
177 177
      */
178 178
     protected function getObjectUrl($path)
179 179
     {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      *
186 186
      * @param string $objectPath
187 187
      *
188
-     * @return bool
188
+     * @return boolean|null
189 189
      */
190 190
     protected function objectExists($objectPath)
191 191
     {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
 
195 195
     /**
196
-     * @param mixed $message
196
+     * @param string $message
197 197
      * @param array $context
198 198
      */
199 199
     protected function logError($message, array $context = array())
Please login to merge, or discard this patch.
Binary/Locator/LocatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -15,6 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     /**
17 17
      * @param array $options[]
18
+     * @return void
18 19
      */
19 20
     public function setOptions(array $options = array());
20 21
 
Please login to merge, or discard this patch.
Binary/Locator/FileSystemLocator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     /**
75 75
      * @param string $path
76 76
      *
77
-     * @return bool|string
77
+     * @return string|false
78 78
      */
79 79
     private function locateUsingRootPathsSearch($path)
80 80
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * @param string $path
92 92
      *
93
-     * @return bool|string
93
+     * @return false|string
94 94
      */
95 95
     private function locateUsingRootPlaceholder($path)
96 96
     {
Please login to merge, or discard this patch.
Async/CacheResolved.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * @param string        $path
21
-     * @param string[]|null $uris
21
+     * @param string[] $uris
22 22
      */
23 23
     public function __construct($path, array $uris)
24 24
     {
Please login to merge, or discard this patch.
Imagine/Filter/Loader/ResampleFilterLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @param $file
79
+     * @param string $file
80 80
      *
81 81
      * @throws \RuntimeException
82 82
      */
Please login to merge, or discard this patch.
Utility/OptionsResolver/OptionsResolver.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     private $normalizers = array();
56 56
 
57 57
     /**
58
-     * @param array $defined
58
+     * @param string[] $defined
59 59
      *
60 60
      * @return $this
61 61
      */
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     /**
70 70
      * @param string $option
71
-     * @param mixed  $value
71
+     * @param string  $value
72 72
      *
73 73
      * @return $this
74 74
      */
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @param array $options
83
+     * @param string[] $options
84 84
      *
85 85
      * @return $this
86 86
      */
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     /**
108 108
      * @param string  $option
109
-     * @param mixed[] $types
109
+     * @param string[] $types
110 110
      *
111 111
      * @return $this
112 112
      */
Please login to merge, or discard this patch.
Command/AbstractCacheCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * @param InputInterface $input
51 51
      *
52
-     * @return array
52
+     * @return string[]
53 53
      */
54 54
     protected function resolveFilters(InputInterface $input)
55 55
     {
Please login to merge, or discard this patch.