| 1: | <?php |
| 2: | /** |
| 3: | * This code is licensed under AGPLv3 license or Afterlogic Software License |
| 4: | * if commercial version of the product was purchased. |
| 5: | * For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files. |
| 6: | */ |
| 7: | |
| 8: | namespace Aurora\System\Classes; |
| 9: | |
| 10: | class Account extends Model |
| 11: | { |
| 12: | public function getLogin() |
| 13: | { |
| 14: | return ''; |
| 15: | } |
| 16: | |
| 17: | public function getPassword() |
| 18: | { |
| 19: | return ''; |
| 20: | } |
| 21: | } |
| 22: |