Skip to content
Snippets Groups Projects

Issue #3418404 by Esha_Kundu: Fix Drupal coding standards issues.

6 files
+ 91
72
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -18,21 +18,21 @@ class CompressProviderGZip implements CompressProviderInterface {
protected $extension = 'tar.gz';
/**
* @{@inheritdoc}
* {@inheritdoc}
*/
public function getExtension() {
return $this->extension;
}
/**
* @{@inheritdoc}
* {@inheritdoc}
*/
public function generateCompressedFileUri($base_uri) {
return "$base_uri.$this->extension";
}
/**
* @{@inheritdoc}
* {@inheritdoc}
*/
public function generateCompressedFile($file_uri, $files) {
$full_file_uri = drupal_realpath($file_uri);
@@ -47,4 +47,5 @@ class CompressProviderGZip implements CompressProviderInterface {
return TRUE;
}
}
Loading