Completed
Push — master ( ba39f4...421481 )
by Florin
01:50
created
src/Minify.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     /**
202 202
      * Process Built
203 203
      *
204
-     * @return bool|null|string
204
+     * @return boolean|string
205 205
      */
206 206
     public function process()
207 207
     {
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     /**
224 224
      * Set destination folder
225 225
      *
226
-     * @param $strFolder
226
+     * @param string $strFolder
227 227
      * @return $this
228 228
      */
229 229
     public function setDestinationFolder($strFolder)
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     /**
236 236
      * Set destination file
237 237
      *
238
-     * @param $strFile
238
+     * @param string $strFile
239 239
      * @return $this
240 240
      */
241 241
     public function setDestinationFile($strFile)
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
      * Save Cache Bust
269 269
      *
270 270
      * @var string $strApplicationFileContents
271
-     * @return null
271
+     * @return boolean|string
272 272
      */
273 273
     public function saveCacheBust($strApplicationFileContents = '')
274 274
     {
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
     /**
310 310
      * Create minified and concatenated file
311 311
      *
312
-     * @param $strApplicationFileContents
312
+     * @param string $strApplicationFileContents
313 313
      * @return string
314 314
      */
315 315
     public function createApplicationFile($strApplicationFileContents)
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
     /**
332 332
      * Set destination file extension
333 333
      *
334
-     * @param $strDestinationExtension
334
+     * @param string $strDestinationExtension
335 335
      */
336 336
     public function setDestinationExtensionType($strDestinationExtension)
337 337
     {
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
     /**
342 342
      * Get destination file type extension
343 343
      *
344
-     * @return mixed
344
+     * @return string
345 345
      */
346 346
     public function getDestinationExtension()
347 347
     {
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
     /**
398 398
      * Get minified Content
399 399
      *
400
-     * @param $strFile
400
+     * @param string $strFile
401 401
      * @return bool|string
402 402
      */
403 403
     public function getMinifiedContent($strFile)
Please login to merge, or discard this patch.