| 1 | <?php |
||
| 32 | class PropertyKeys |
||
| 33 | { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * The property name with the host address. |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | const ADDRESS = 'address'; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * The property name with the host port. |
||
| 44 | * |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | const PORT = 'port'; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * The property name with the transport to use. |
||
| 51 | * |
||
| 52 | * @var string |
||
| 53 | */ |
||
| 54 | const TRANSPORT = 'transport'; |
||
| 55 | |||
| 56 | /** |
||
| 57 | * The property name with the index file to use. |
||
| 58 | * |
||
| 59 | * @var string |
||
| 60 | */ |
||
| 61 | const INDEX_FILE = 'indexFile'; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Private constructor for marking the class as utility. |
||
| 65 | */ |
||
| 66 | final protected function __construct() |
||
| 70 | } |
||
| 71 |