| Total Complexity | 13 |
| Total Lines | 60 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 3 | class plGraphvizProcessor extends plProcessor |
||
| 4 | { |
||
| 5 | private $properties; |
||
|
|
|||
| 6 | |||
| 7 | private $output; |
||
| 8 | |||
| 9 | private $structure; |
||
| 10 | |||
| 11 | public $options; |
||
| 12 | |||
| 13 | public function __construct() |
||
| 14 | { |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getInputTypes() |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getOutputType() |
||
| 22 | { |
||
| 23 | } |
||
| 24 | |||
| 25 | public function process( $input, $type ) |
||
| 26 | { |
||
| 27 | } |
||
| 28 | |||
| 29 | private function getClassDefinition( $o ) |
||
| 30 | { |
||
| 31 | } |
||
| 32 | |||
| 33 | private function getInterfaceDefinition( $o ) |
||
| 34 | { |
||
| 35 | } |
||
| 36 | |||
| 37 | private function getModifierRepresentation( $modifier ) |
||
| 38 | { |
||
| 39 | } |
||
| 40 | |||
| 41 | private function getParamRepresentation( $params ) |
||
| 43 | } |
||
| 44 | |||
| 45 | private function getUniqueId( $object ) |
||
| 46 | { |
||
| 47 | } |
||
| 48 | |||
| 49 | private function createNode( $name, $options ) |
||
| 50 | { |
||
| 51 | } |
||
| 52 | |||
| 53 | private function createNodeRelation( $node1, $node2, $options ) |
||
| 55 | } |
||
| 56 | |||
| 57 | private function createInterfaceLabel( $name, $attributes, $functions ) |
||
| 59 | } |
||
| 60 | |||
| 61 | private function createClassLabel( $name, $attributes, $functions ) |
||
| 62 | { |
||
| 63 | } |
||
| 64 | } |
||
| 65 |