Completed
Pull Request — master (#93)
by Peter
01:12
created
src/DbDumperFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@
 block discarded – undo
59 59
     /**
60 60
      * @param array $dumpConfiguration
61 61
      *
62
-     * @param $dbDumper
62
+     * @param DbDumper $dbDumper
63 63
      *
64
-     * @return mixed
64
+     * @return DbDumper
65 65
      */
66 66
     protected static function processExtraDumpParameters(array $dumpConfiguration, $dbDumper): DbDumper
67 67
     {
Please login to merge, or discard this patch.
src/Snapshot.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Carbon\Carbon;
6 6
 use Illuminate\Filesystem\FilesystemAdapter as Disk;
7 7
 use Illuminate\Support\Facades\DB;
8
-use Illuminate\Support\Facades\File;
9 8
 use Illuminate\Support\Facades\Storage;
10 9
 use Spatie\DbSnapshots\Events\DeletedSnapshot;
11 10
 use Spatie\DbSnapshots\Events\DeletingSnapshot;
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@
 block discarded – undo
85 85
         $this->streamFileIntoDB($dumpFilePath, $connectionName);
86 86
     }
87 87
 
88
+    /**
89
+     * @param string $path
90
+     */
88 91
     public function streamFileIntoDB($path, string $connectionName = null)
89 92
     {
90 93
         if ($connectionName !== null) {
Please login to merge, or discard this patch.