1: <?php
2: namespace Genetsis\core;
3:
4: /**
5: * This class stores the login status types.
6: *
7: * @package Genetsis
8: * @category Bean
9: * @version 1.0
10: * @access private
11: */
12: class LoginStatusType
13: {
14: const connected = 'connected';
15: const notConnected = 'notConnected';
16: const unknown = 'unknown';
17: }