You are here

class Com in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Drupal/Component/Uuid/Com.php \Drupal\Component\Uuid\Com

UUID implementation using the Windows internal GUID extension.

Hierarchy

Expanded class hierarchy of Com

See also

http://php.net/com_create_guid

File

lib/Drupal/Component/Uuid/Com.php, line 15
Contains \Drupal\Component\Uuid\Com.

Namespace

Drupal\Component\Uuid
View source
class Com implements UuidInterface {

  /**
   * {@inheritdoc}
   */
  public function generate() {

    // Remove {} wrapper and make lower case to keep result consistent.
    return strtolower(trim(com_create_guid(), '{}'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Com::generate public function Generates a Universally Unique IDentifier (UUID). Overrides UuidInterface::generate