function DevelCommands::uuid

Same name in other branches
  1. 5.x src/Commands/DevelCommands.php \Drupal\devel\Commands\DevelCommands::uuid()
  2. 5.x src/Drush/Commands/DevelCommands.php \Drupal\devel\Drush\Commands\DevelCommands::uuid()

Generate a Universally Unique Identifier (UUID).

@command devel:uuid @aliases uuid,devel-uuid @usage drush devel-uuid

Return value

string The generated uuid.

File

src/Commands/DevelCommands.php, line 248

Class

DevelCommands
Class DevelCommands.

Namespace

Drupal\devel\Commands

Code

public function uuid() {
    $uuid = new Php();
    return $uuid->generate();
}