. */ /** * For more information, please contact */ namespace Goat1000\SVGGraph; class SteppedLineGraph extends LineGraph { use SteppedLineTrait; public function __construct($w, $h, array $settings, array $fixed_settings = []) { $fs = ['line_curve' => 0]; $fs = array_merge($fs, $fixed_settings); parent::__construct($w, $h, $settings, $fs); } }