num+2; }
}/*** end of class ***/
/*** Instantiate a new class instance ***/ $math = new mathematics;
/*** set the value of the number ***/ $math->num = 2;
/*** call the addTwo method ***/ echo $math->addTwo();
?>