function DevelCommands::uuid
Same name in this branch
- 5.x src/Commands/DevelCommands.php \Drupal\devel\Commands\DevelCommands::uuid()
Same name in other branches
- 4.x src/Commands/DevelCommands.php \Drupal\devel\Commands\DevelCommands::uuid()
Generate a Universally Unique Identifier (UUID).
File
-
src/
Drush/ Commands/ DevelCommands.php, line 243
Class
Namespace
Drupal\devel\Drush\CommandsCode
public function uuid() : string {
$uuid = new Php();
return $uuid->generate();
}