Completed
Push — upgrade-2.0-from-1.0 ( 918602 )
by David
13:04
created
Imagine/Cache/Resolver/FlysystemResolver.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -71,6 +71,8 @@
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * {@inheritdoc}
74
+     * @param string $path
75
+     * @param string $filter
74 76
      */
75 77
     protected function getFilePath($path, $filter)
76 78
     {
Please login to merge, or discard this patch.
DependencyInjection/Factory/ChildDefinitionTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
 trait ChildDefinitionTrait
18 18
 {
19 19
     /**
20
+     * @param string $parent
20 21
      * @return ChildDefinition|DefinitionDecorator
21 22
      */
22 23
     private function getChildDefinition($parent)
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 = []);
20 21
 
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
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      *
183 183
      * @param string $path
184 184
      *
185
-     * @return string
185
+     * @return \CFResponse
186 186
      */
187 187
     protected function getObjectUrl($path)
188 188
     {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      *
195 195
      * @param string $objectPath
196 196
      *
197
-     * @return bool
197
+     * @return boolean|null
198 198
      */
199 199
     protected function objectExists($objectPath)
200 200
     {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-     * @param mixed $message
205
+     * @param string $message
206 206
      * @param array $context
207 207
      */
208 208
     protected function logError($message, array $context = [])
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.
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.
Imagine/Cache/CacheManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@
 block discarded – undo
255 255
     }
256 256
 
257 257
     /**
258
-     * @param string|string[]|null $paths
258
+     * @param string|null $paths
259 259
      * @param string|string[]|null $filters
260 260
      */
261 261
     public function remove($paths = null, $filters = null)
Please login to merge, or discard this patch.