for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class DescribeThemeItem
{
/**
* @var DescribeColor[]
*/
protected $colors = null;
* @var DescribeIcon[]
protected $icons = null;
* @var string
protected $name = null;
* @param string $name
public function __construct($name = null)
$this->name = $name;
}
* @return DescribeColor[]
public function getColors()
return $this->colors;
* @param DescribeColor[] $colors
* @return \SForce\Wsdl\DescribeThemeItem
public function setColors(array $colors = null)
$this->colors = $colors;
return $this;
* @return DescribeIcon[]
public function getIcons()
return $this->icons;
* @param DescribeIcon[] $icons
public function setIcons(array $icons = null)
$this->icons = $icons;
* @return string
public function getName()
return $this->name;
public function setName($name)