| 1 | <?php |
||
| 12 | class User implements NotifiableInterface, EmailableInterface, TextableInterface, PusherableInterface, SlackableInterface, DatabaseNotifiableInterface |
||
| 13 | { |
||
| 14 | private $id = 1; |
||
| 15 | private $username = 'jimBob'; |
||
| 16 | private $email = '[email protected]'; |
||
| 17 | |||
| 18 | public function getNumber() |
||
| 22 | |||
| 23 | public function getId() |
||
| 27 | |||
| 28 | public function getUsername() |
||
| 32 | |||
| 33 | public function setUsername($username) |
||
| 37 | |||
| 38 | public function getEmail() |
||
| 42 | |||
| 43 | public function setEmail($email) |
||
| 47 | |||
| 48 | public function isSubscribedToChannel($channel) |
||
| 54 | |||
| 55 | public function getSubscribedChannels() |
||
| 65 | |||
| 66 | public function getPusherChannelSuffix() |
||
| 70 | |||
| 71 | public function getSlackWebhook() |
||
| 75 | |||
| 76 | public function getIdentifier() |
||
| 80 | } |
||
| 81 |