for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gocobachi\Compressy\Adapter\GNUTar;
use Gocobachi\Compressy\Adapter\Resource\ResourceInterface;
use Gocobachi\Compressy\Exception\NotSupportedException;
class TarBz2GNUTarAdapter extends TarGNUTarAdapter
{
/**
* @inheritdoc
*/
protected function doAdd(ResourceInterface $resource, $files, $recursive)
throw new NotSupportedException('Updating a compressed tar archive is not supported.');
}
protected function getLocalOptions()
return array('--bzip2');