awareness-1.0.0-alpha5/src/Uuid/UuidAwareTrait.php
src/Uuid/UuidAwareTrait.php
<?php
namespace Drupal\awareness\Uuid;
/**
* Trait for classes that utilize the uuid service.
*/
trait UuidAwareTrait {
/**
* Get the UUID service.
*
* @return \Drupal\Component\Uuid\UuidInterface
* The UUID service.
*/
protected function getUuid() {
return \Drupal::service('uuid');
}
}
