PHP Classes

File: docs/files/src/SVGCreator/Elements/Path.php.txt

Recommend this page to a friend!
  Classes of Tio   PHP SVG Creator   docs/files/src/SVGCreator/Elements/Path.php.txt   Download  
File: docs/files/src/SVGCreator/Elements/Path.php.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: PHP SVG Creator
Generate SVG chart documents
Author: By
Last change: Update of docs/files/src/SVGCreator/Elements/Path.php.txt
Date: 2 months ago
Size: 362 bytes
 

Contents

Class file image Download
<?php /** * Marker Class * * @package SVGCreator * @subpackage Elements * @author Sérgio Diniz * @version 1.0 */ namespace SVGCreator\Elements; class Path extends \SVGCreator\Element { const TYPE = \SVGCreator\Element::PATH; static protected $mandatoryFields = array(); protected function validateElementValues() { return true; } }