Completed
Push — master ( 507df7...d00737 )
by Michael
10s
created
class/helper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     public $browscap;
43 43
 
44 44
     /**
45
-     * @param $debug
45
+     * @param boolean $debug
46 46
      */
47 47
     protected function __construct($debug)
48 48
     {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 
151 151
 
152 152
     /**
153
-     * @param null $name
153
+     * @param string $name
154 154
      * @param null $value
155 155
      *
156 156
      * @return mixed
Please login to merge, or discard this patch.
class/log.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
      * @param      $tolog
274 274
      * @param bool $force
275 275
      *
276
-     * @return bool
276
+     * @return boolean|null
277 277
      */
278 278
     public function store($tolog, $force = true)
279 279
     {
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
      * @param string $csvNamePrefix
463 463
      * @param string $delimiter
464 464
      *
465
-     * @return bool|string
465
+     * @return false|string
466 466
      */
467 467
     public function exportLogsToCsv($logs, $headers, $csvNamePrefix = 'list_', $delimiter = ';')
468 468
     {
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
      * @param array $log_files
667 667
      * @param null  $mergeFileName
668 668
      *
669
-     * @return bool|string
669
+     * @return false|string
670 670
      */
671 671
     public function mergeFiles($log_files = [], $mergeFileName = null)
672 672
     {
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
      * @param null $log_file
781 781
      * @param null $newFileName
782 782
      *
783
-     * @return bool|string
783
+     * @return false|string
784 784
      */
785 785
     public function renameFile($log_file = null, $newFileName = null)
786 786
     {
@@ -824,7 +824,7 @@  discard block
 block discarded – undo
824 824
      * @param null $log_file
825 825
      * @param null $newFileName
826 826
      *
827
-     * @return bool|string
827
+     * @return false|string
828 828
      */
829 829
     public function copyFile($log_file = null, $newFileName = null)
830 830
     {
Please login to merge, or discard this patch.