Test Failed
Pull Request — master (#1)
by
unknown
38:28
created
HtmlCompressor.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param $data
69 69
      * @param null|array $options
70
-     * @return bool|mixed|string
70
+     * @return string|false
71 71
      */
72 72
     private function htmlCompress($data, $options = null)
73 73
     {
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     }
149 149
 
150 150
     /**
151
-     * @param $line
151
+     * @param string $line
152 152
      * @return array
153 153
      * @codeCoverageIgnore
154 154
      */
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     }
166 166
 
167 167
     /**
168
-     * @param $line
168
+     * @param string $line
169 169
      * @return array
170 170
      * @codeCoverageIgnore
171 171
      */
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     /**
185 185
      * Returns the next line from an open file handle or a string
186 186
      * @param $data
187
-     * @return bool|string
187
+     * @return string|false
188 188
      * @codeCoverageIgnore
189 189
      */
190 190
     private function getLine(&$data)
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
     /**
212 212
      * @param $data
213 213
      * @param null|array $options
214
-     * @return bool|mixed|string
214
+     * @return string|false
215 215
      * @deprecated
216 216
      * @codeCoverageIgnore
217 217
      */
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     /**
226 226
      * Returns the next line from an open file handle or a string
227 227
      * @param $data
228
-     * @return bool|string
228
+     * @return string|false
229 229
      * @deprecated
230 230
      * @codeCoverageIgnore
231 231
      */
Please login to merge, or discard this patch.
components/MinifyComponent.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -225,6 +225,9 @@
 block discarded – undo
225 225
         return $version;
226 226
     }
227 227
 
228
+    /**
229
+     * @param boolean $bucket
230
+     */
228 231
     protected function s3Path( $bucket , $fileName )
229 232
     {
230 233
         return "https://s3.amazonaws.com/".$bucket."/".$fileName;
Please login to merge, or discard this patch.