1 uuid.inc | public Uuid::__construct() |
This constructor instantiates the correct UUID object.
File
- core/
includes/ uuid.inc, line 38 - Handling of universally unique identifiers.
Class
- Uuid
- Factory class for UUIDs.
Code
public function __construct() {
$class = $this->determinePlugin();
$this->plugin = new $class();
}