Lines Matching refs:authentication
12 private $authentication = ['user' => null, 'password' => null];
16 return $this->authentication;
20 * @param array{ user?: string|null, password?: string|null, } $authentication
22 private function setAuthentication(array $authentication): void
24 if (!empty($authentication)) {
25 $this->authentication['user'] = $authentication['user'] ?? null;
26 $this->authentication['password'] = $authentication['password'] ?? null;
32 return $this->authentication['user'] ?? null;
41 $new->authentication['user'] = $user;
48 return $this->authentication['password'] ?? null;
57 $new->authentication['password'] = $password;