Spatie\DbDumper\DbDumper::setDumpBinaryPath PHP Method

setDumpBinaryPath() public method

public setDumpBinaryPath ( string $dumpBinaryPath )
$dumpBinaryPath string
    public function setDumpBinaryPath(string $dumpBinaryPath)
    {
        if ($dumpBinaryPath !== '' && substr($dumpBinaryPath, -1) !== '/') {
            $dumpBinaryPath .= '/';
        }
        $this->dumpBinaryPath = $dumpBinaryPath;
        return $this;
    }