Try this
class ConfigurationClass {
//"unique" id for database insertion
protected $config_id; // or put public
//array to hold all TYPES of products
protected $productTypes; // or put public
//holds ALL products
protected $products; // or put public
//holds ALL programming
protected $programming; // or put public
public function __construct($config_id)
{
$this->config_id = $config_id;
$this->products = array();
$this->programming = array();
}