Completed
Pull Request — master (#751)
by
unknown
01:45
created
src/Tasks/Backup/FileSelection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @return \Generator|string[]
68
+     * @return \Generator
69 69
      */
70 70
     public function selectedFiles()
71 71
     {
Please login to merge, or discard this patch.
src/Tasks/Backup/Manifest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @return \Generator|string[]
56
+     * @return \Generator
57 57
      */
58 58
     public function files()
59 59
     {
Please login to merge, or discard this patch.
src/Tasks/Monitor/BackupDestinationStatus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@
 block discarded – undo
66 66
         return $this->backupDestination->backups()->count();
67 67
     }
68 68
 
69
+    /**
70
+     * @return Carbon
71
+     */
69 72
     public function dateOfNewestBackup(): ?Carbon
70 73
     {
71 74
         $newestBackup = $this->backupDestination->newestBackup();
Please login to merge, or discard this patch.
src/Tasks/Backup/BackupJob.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -251,6 +251,7 @@
 block discarded – undo
251 251
     /**
252 252
      * Set the compressor.
253 253
      *
254
+     * @param DbDumper $dbDumper
254 255
      * @return void
255 256
      */
256 257
     protected function setCompressor($dbDumper)
Please login to merge, or discard this patch.