. */ /** * For more information, please contact */ namespace Goat1000\SVGGraph; class FigureShape extends MarkerShape { protected $required = ['name', 'x', 'y']; /** * Override to draw a marker */ protected function drawElement(&$graph, &$attributes) { $attributes['type'] = 'figure:' . $attributes['name']; unset($attributes['name']); return parent::drawElement($graph, $attributes); } }