Version 1
[yaffs-website] / vendor / drush / drush / lib / Drush / User / User7.php
1 <?php
2
3 namespace Drush\User;
4
5 class User7 extends UserVersion {
6
7   /**
8    * {inheritdoc}
9    */
10   public function create($properties) {
11     $account = user_save(NULL, $properties, NULL);
12     return new UserSingle7($account);
13   }
14 }