Exemple #1
0
 /** @inheritdoc */
 public function create()
 {
     // Create a random password, minimum length, but better than most users create.
     if ($this->password === null) {
         $this->password = Password::generate(static::$passwordLengthMin);
     }
     return parent::create();
 }