Bootstrap.php in AmazonS3 7.2
Same filename in this branch
Namespace
Drupal\amazons3\DrupalAdapterFile
src/DrupalAdapter/Bootstrap.phpView source
<?php
namespace Drupal\amazons3\DrupalAdapter;
/**
* Methods that map to includes/bootstrap.inc.
*
* @class Bootstrap
* @package Drupal\amazons3\DrupalAdapter
* @codeCoverageIgnore
*/
trait Bootstrap {
/**
* @param $name
* @param null $default
* @return null
*/
public static function variable_get($name, $default = NULL) {
return variable_get($name, $default);
}
}