awareness-1.0.0-alpha5/src/Settings/SettingsAwareTrait.php
src/Settings/SettingsAwareTrait.php
<?php
namespace Drupal\awareness\Settings;
/**
* Trait for classes that utilize the settings service.
*/
trait SettingsAwareTrait {
/**
* Get the settings.
*
* @return \Drupal\Core\Site\Settings
* The settings.
*/
protected function getSettings() {
return \Drupal::service('settings');
}
}
