I'm having difficulties in setting the values of a private variable in the construct of a class i'm working on...
Can anyone spot where i'm going wrong?
function __contruct($brokerId){
parent::__contstruct($brokerId);
$this->_coverSummaryPoints = array('option1' => array('bullet point 1',
'bullet point 69'),
'option2' => array('bullet dash1',
'bullet dash2')
);
}
That's my code, but for some reason the coverSummaryPoints value isn't being set.
Any help is greatly appreciated.