awareness-1.0.0-alpha5/src/Session/CurrentUserAwareTrait.php
src/Session/CurrentUserAwareTrait.php
<?php
namespace Drupal\awareness\Session;
/**
* Trait for classes that utilize current_user service.
*/
trait CurrentUserAwareTrait {
/**
* Get the current user.
*
* @return \Drupal\Core\Session\AccountProxyInterface
* The current user.
*/
protected function getCurrentUser() {
return \Drupal::currentUser();
}
}
