Skip to content
Snippets Groups Projects
Select Git revision
  • 3.0 default protected
  • 2.0
  • mamarley-autocomplete
  • master protected
4 results

User.php

Blame
  • User.php 402 B
    <?php
    
    namespace QuasselRestSearch;
    
    
    class User {
        public $userid;
        public $username;
        public $password;
        public $hashversion;
    
        public function __construct(array $userArray) {
            $this->userid = $userArray['userid'];
            $this->username = $userArray['username'];
            $this->password = $userArray['password'];
            $this->hashversion = $userArray['hashversion'];
        }
    }