for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class DescribeGlobalTheme
{
/**
* @var DescribeGlobalResult
*/
protected $global = null;
* @var DescribeThemeResult
protected $theme = null;
* @param DescribeGlobalResult $global
* @param DescribeThemeResult $theme
public function __construct($global = null, $theme = null)
$this->global = $global;
$this->theme = $theme;
}
* @return DescribeGlobalResult
public function getGlobal()
return $this->global;
* @return \SForce\Wsdl\DescribeGlobalTheme
public function setGlobal($global)
return $this;
* @return DescribeThemeResult
public function getTheme()
return $this->theme;
public function setTheme($theme)