1 | <?php |
||
7 | class Twitter extends AbstractConfigurableElement |
||
8 | { |
||
9 | const IDENTITY = 'Magium\Twitter\Identities\Twitter'; |
||
10 | |||
11 | public $username = 'nobody'; |
||
12 | public $password = 'nopassword'; |
||
13 | |||
14 | /** |
||
15 | * @return string |
||
16 | */ |
||
17 | public function getPassword() |
||
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | public function getUsername() |
||
29 | |||
30 | /** |
||
31 | * @param string $password |
||
32 | */ |
||
33 | public function setPassword($password) |
||
37 | |||
38 | /** |
||
39 | * @param string $username |
||
40 | */ |
||
41 | public function setUsername($username) |
||
45 | |||
46 | |||
47 | |||
48 | } |