1: <?php
2: namespace Azalea\Selenium\Core;
3:
4: class User
5: {
6: protected $email = "";
7: protected $password = "";
8:
9: public function __construct($email = "", $password = "")
10: {
11: if (!empty($email)) {
12: $this->email = $email;
13: }
14: if (!empty($password)) {
15: $this->password = $password;
16: }
17: }
18:
19: public function getEmail()
20: {
21: return $this->email;
22: }
23:
24: public function getPassword()
25: {
26: return $this->password;
27: }
28: }
29: ?>