We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e4b59 commit ac2d0b2Copy full SHA for ac2d0b2
src/Ifsnop/Mysqldump/Mysqldump.php
@@ -734,11 +734,6 @@ public static function create($c)
734
735
return new $method;
736
}
737
-
738
- public function getArchiveFilename()
739
- {
740
- return $this->archiveFilename;
741
- }
742
743
744
class CompressBzip2 extends CompressManagerFactory
@@ -817,8 +812,7 @@ class CompressNone extends CompressManagerFactory
817
812
818
813
public function open($filename)
819
814
{
820
- $this->archiveFilename = $filename;
821
- $this->fileHandler = fopen($this->archiveFilename, "wb");
815
+ $this->fileHandler = fopen($filename, "wb");
822
816
if (false === $this->fileHandler) {
823
throw new Exception("Output file is not writable");
824
0 commit comments