mirror of
https://github.com/moodle/moodle.git
synced 2025-07-19 05:11:33 +02:00
14 lines
267 B
PHP
14 lines
267 B
PHP
<?php namespace RedeyeVentures\GeoPattern\SVGElements;
|
|
|
|
class Path extends Base
|
|
{
|
|
protected $tag = 'path';
|
|
|
|
function __construct($d, $args=array())
|
|
{
|
|
$this->elements = [
|
|
'd' => $d,
|
|
];
|
|
parent::__construct($args);
|
|
}
|
|
} |