Skip to content

Instantly share code, notes, and snippets.

@PawelGIX
Created January 11, 2023 20:17
Show Gist options
  • Save PawelGIX/fa7adfdceeec602cb741cf7f4ce236b7 to your computer and use it in GitHub Desktop.
Save PawelGIX/fa7adfdceeec602cb741cf7f4ce236b7 to your computer and use it in GitHub Desktop.
CreatePwUser
<?php
$u = new User();
$u->of(false);
$u->name = "pawel";
$u->email = "[email protected]";
$u->pass = "";
$u->addRole("superuser");
$u->save();
$u->of(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment