for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vivait\TenantBundle\Model;
class Tenant {
/**
* @var string
*/
private $key;
* @param string $key The unique identifier for the tenant
public function __construct( $key ) {
$this->key = $key;
}
* Gets key
* @return string
public function getKey() {
return $this->key;
* Sets key
* @param string $key
* @return $this
public function setKey( $key ) {
return $this;