function DevelCommands::uuid
Same name in this branch
- 5.x src/Drush/Commands/DevelCommands.php \Drupal\devel\Drush\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).
@command devel:uuid @aliases uuid,devel-uuid @usage drush devel-uuid
Return value
string The generated uuid.
File
-
src/
Commands/ DevelCommands.php, line 269
Class
- DevelCommands
- Class DevelCommands.
Namespace
Drupal\devel\CommandsCode
public function uuid() {
$uuid = new Php();
return $uuid->generate();
}