UpdateTestArchiver.php in Drupal 8
File
core/modules/update/tests/modules/update_test/src/Plugin/Archiver/UpdateTestArchiver.php
View source
<?php
namespace Drupal\update_test\Plugin\Archiver;
use Drupal\Core\Archiver\ArchiverInterface;
class UpdateTestArchiver implements ArchiverInterface {
public function add($file_path) {
return $this;
}
public function remove($path) {
return $this;
}
public function extract($path, array $files = []) {
return $this;
}
public function listContents() {
return [];
}
}