. */ /** * For more information, please contact */ namespace Goat1000\SVGGraph; class Rect extends Shape { protected $element = 'rect'; protected $required = ['x','y','width','height']; protected $transform = ['width' => 'x', 'height' => 'y']; protected $transform_from = ['width' => 'x', 'height' => 'y']; protected $transform_pairs = [ ['x', 'y'] ]; }