Completed
Pull Request — 1.0 (#941)
by Rob
02:28
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.
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.
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   +5 added lines, -5 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
      */
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     /**
95 95
      * @param string  $option
96
-     * @param mixed[] $values
96
+     * @param string[] $values
97 97
      *
98 98
      * @return $this
99 99
      */
@@ -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.