You are here

protected static function StreamWrapperConfiguration::required in AmazonS3 7.2

1 call to StreamWrapperConfiguration::required()
StreamWrapperConfiguration::fromConfig in src/StreamWrapperConfiguration.php
Generate a configuration object from an array.

File

src/StreamWrapperConfiguration.php, line 97

Class

StreamWrapperConfiguration
Class to manage S3 stream wrapper configuration.

Namespace

Drupal\amazons3

Code

protected static function required() {
  $required = array(
    'bucket',
    'region',
  );
  return $required;
}