. */ /** * For more information, please contact */ namespace Goat1000\SVGGraph; /** * A class to hold the details of an entry in the legend */ class LegendEntry { public $item = null; public $text = null; public $link = null; public $style = null; public $width = 0; public $height = 0; public function __construct($item, $text, $link, $style) { $this->item = $item; $this->text = $text; $this->link = $link; $this->style = $style; } }