public function Uuid::__construct

Instantiates the correct UUID object.

File

drupal/core/lib/Drupal/Component/Uuid/Uuid.php, line 28
Definition of Drupal\Component\Uuid\Uuid.

Class

Uuid
Factory class for UUIDs.

Namespace

Drupal\Component\Uuid

Code

public function __construct() {
  $class = $this
    ->determinePlugin();
  $this->plugin = new $class();
}