Skip to content

Commit

Permalink
allow set empty dump binary path (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
mokhosh committed Apr 1, 2024
1 parent bdc6b2a commit c566852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DbDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function setTimeout(int $timeout): self
return $this;
}

public function setDumpBinaryPath(string $dumpBinaryPath): self
public function setDumpBinaryPath(string $dumpBinaryPath = ''): self
{
if ($dumpBinaryPath !== '' && ! str_ends_with($dumpBinaryPath, '/')) {
$dumpBinaryPath .= '/';
Expand Down

0 comments on commit c566852

Please sign in to comment.