for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\DbDumper\Compressors;
class Bzip2Compressor extends Compressor
{
protected $extension = '.bz2';
public function getCompressorCommand()
$level = $this->level ? " -f{$this->level}" : '';
return 'bzip2' . $level;
}