Your IP : 216.73.216.95


Current Path : /var/www/ljmtc/cbt/lib/geopattern-php/GeoPattern/SVGElements/
Upload File :
Current File : /var/www/ljmtc/cbt/lib/geopattern-php/GeoPattern/SVGElements/Path.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);
    }
}