getUsers() public method

Each array element represents a single user. The array key is the username in lower case, and the array value is the corresponding user password.
public getUsers ( ) : array
return array list of users
Exemplo n.º 1
0
 public function testUsers()
 {
     $userManager = new TUserManager();
     $userManager->init(self::$config);
     self::assertEquals(array('joe' => 'demo', 'john' => 'demo', 'test' => 'test'), $userManager->getUsers());
 }