Completed
Pull Request — 1.0 (#919)
by Maksim
02:35
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.
Model/FileBinary.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
     protected $format;
23 23
 
24 24
     /**
25
-     * @param string $content
26 25
      * @param string $mimeType
27 26
      * @param string $format
27
+     * @param string $path
28 28
      */
29 29
     public function __construct($path, $mimeType, $format = null)
30 30
     {
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/Loader/FileSystemLoader.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@
 block discarded – undo
39 39
      * @param MimeTypeGuesserInterface  $mimeGuesser
40 40
      * @param ExtensionGuesserInterface $extensionGuesser
41 41
      * @param string[]                  $dataRoots
42
-     * @param LocatorInterface          $locator
43 42
      */
44 43
     public function __construct(
45 44
         MimeTypeGuesserInterface $mimeGuesser,
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.
Utility/OptionsResolver/OptionsResolver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
     /**
48 48
      * @param string $option
49
-     * @param mixed  $value
49
+     * @param string  $value
50 50
      */
51 51
     public function setDefault($option, $value)
52 52
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * @param string  $option
66
-     * @param mixed[] $values
66
+     * @param string[] $values
67 67
      *
68 68
      * @return $this
69 69
      */
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
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     
18 18
     /**
19 19
      * @param string $path
20
-     * @param string[]|null $uris
20
+     * @param string[] $uris
21 21
      */
22 22
     public function __construct($path, array $uris)
23 23
     {
Please login to merge, or discard this patch.