| 1 | <?php |
||
| 5 | class Tenant { |
||
| 6 | /** |
||
| 7 | * @var string |
||
| 8 | */ |
||
| 9 | private $key; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $key The unique identifier for the tenant |
||
| 13 | */ |
||
| 14 | public function __construct( $key ) { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Gets key |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | public function getKey() { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Sets key |
||
| 28 | * @param string $key |
||
| 29 | * @return $this |
||
| 30 | */ |
||
| 31 | public function setKey( $key ) { |
||
| 36 | } |
||
| 37 |