. **/ class CSvgText extends CSvgTag { public function __construct(string $text, $x = 0, $y = 0) { parent::__construct('text'); $this ->addItem($text) ->setAttribute('x', $x) ->setAttribute('y', $y); } }