| Total Complexity | 8 |
| Total Lines | 62 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class TarBSDTarAdapter extends AbstractTarAdapter |
||
| 17 | { |
||
| 18 | public function __construct(ParserInterface $parser, ResourceManager $manager, ProcessBuilderFactoryInterface $inflator, ProcessBuilderFactoryInterface $deflator) |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritdoc |
||
| 26 | */ |
||
| 27 | protected function getLocalOptions() |
||
| 28 | { |
||
| 29 | return array(); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdoc |
||
| 34 | */ |
||
| 35 | public static function getName() |
||
| 36 | { |
||
| 37 | return 'bsd-tar'; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @inheritdoc |
||
| 42 | */ |
||
| 43 | public static function getDefaultDeflatorBinaryName() |
||
| 44 | { |
||
| 45 | return array('bsdtar', 'tar'); |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @inheritdoc |
||
| 50 | */ |
||
| 51 | public static function getDefaultInflatorBinaryName() |
||
| 52 | { |
||
| 53 | return array('bsdtar', 'tar'); |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritdoc} |
||
| 58 | */ |
||
| 59 | protected function getListMembersOptions() |
||
| 62 | } |
||
| 63 | |||
| 64 | /** |
||
| 65 | * {@inheritdoc} |
||
| 66 | */ |
||
| 67 | protected function getExtractOptions() |
||
| 68 | { |
||
| 69 | return array(); |
||
| 70 | } |
||
| 71 | |||
| 72 | /** |
||
| 73 | * {@inheritdoc} |
||
| 74 | */ |
||
| 75 | protected function getExtractMembersOptions() |
||
| 78 | } |
||
| 79 | } |
||
| 80 |