getUsers() публичный Метод

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
Результат array list of users
Пример #1
0
 public function testUsers()
 {
     $userManager = new TUserManager();
     $userManager->init(self::$config);
     self::assertEquals(array('joe' => 'demo', 'john' => 'demo', 'test' => 'test'), $userManager->getUsers());
 }