for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acquia\Cloud\Api\Response;
class Site extends \Acquia\Rest\Element
{
/**
* @return string
*/
public function name()
return $this['name'];
}
public function vcsUrl()
return $this['vcs_url'];
public function uuid()
return $this['uuid'];
public function unixUsername()
return $this['unix_username'];
public function title()
return $this['title'];
public function vcsType()
return $this['vcs_type'];
* @return boolean
public function productionMode()
return !empty($this['production_mode']);