Completed
Push — master ( 0f6a93...6e5cb2 )
by Florin
15:36
created
src/Minify.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     /**
147 147
      * Process Built
148 148
      *
149
-     * @return bool|null|string
149
+     * @return boolean|string
150 150
      */
151 151
     public function process()
152 152
     {
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
     /**
250 250
      * Minify content
251 251
      *
252
-     * @param  $strFile
252
+     * @param  string $strFile
253 253
      * @return bool|string
254 254
      */
255 255
     public function minifyContent($strFile)
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
      * Save Cache Bust
270 270
      *
271 271
      * @var string $strApplicationFileContents
272
-     * @return null
272
+     * @return boolean|string
273 273
      */
274 274
     public function saveCacheBust($strApplicationFileContents = '')
275 275
     {
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
     /**
365 365
      * Set destination folder
366 366
      *
367
-     * @param $strFolder
367
+     * @param string $strFolder
368 368
      * @return $this
369 369
      */
370 370
     public function setDestinationFolder($strFolder)
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
     /**
377 377
      * Set destination file
378 378
      *
379
-     * @param $strFile
379
+     * @param string $strFile
380 380
      * @return $this
381 381
      */
382 382
     public function setDestinationFile($strFile)
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
     /**
389 389
      * Set destination file extension
390 390
      *
391
-     * @param $strDestinationExtension
391
+     * @param string $strDestinationExtension
392 392
      */
393 393
     public function setDestinationExtensionType($strDestinationExtension)
394 394
     {
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
     /**
439 439
      * Get destination file type extension
440 440
      *
441
-     * @return mixed
441
+     * @return string
442 442
      */
443 443
     public function getDestinationExtension()
444 444
     {
Please login to merge, or discard this patch.
src/Environment.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     /**
109 109
      * Get settings
110 110
      *
111
-     * @param null $strFile
111
+     * @param string $strFile
112 112
      * @param array $arrSettings
113 113
      * @return mixed|object
114 114
      */
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * Set environment
128 128
      *
129
-     * @param null $strFilesFolder
129
+     * @param string $strFilesFolder
130 130
      */
131 131
     public function setEnvironment($strFilesFolder = null)
132 132
     {
Please login to merge, or discard this patch.