Not really a bug per se - more of a question...
Is there any reason why the following function is defined as protected?
protected function addImage(&$img, $x, $y, $w = 0, $h = 0, $quality = 75, $angle = 0)
It is not used from anywhere else in the class and being protected, it cannot be access from outside the class. Shouldn't this be defined as public in order for it to be usable?
Murray
Not really a bug per se - more of a question...
Is there any reason why the following function is defined as protected?
protected function addImage(&$img, $x, $y, $w = 0, $h = 0, $quality = 75, $angle = 0)
It is not used from anywhere else in the class and being protected, it cannot be access from outside the class. Shouldn't this be defined as public in order for it to be usable?
Murray