Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
3 / 3 |
| InterfaceVertex | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
3 / 3 |
| getSpecific() | |
100.00% |
1 / 1 |
1 | |
100.00% |
3 / 3 |
|||
| <?php | |
| /* | |
| * Mondrian | |
| */ | |
| namespace Trismegiste\Mondrian\Transform\Vertex; | |
| /** | |
| * InterfaceVertex is a vertex for an interface | |
| */ | |
| class InterfaceVertex extends StaticAnalysis | |
| { | |
| protected function getSpecific() | |
| { | |
| $default = array('shape' => 'invtriangle', 'style' => 'filled', | |
| 'color' => 'green', 'label' => $this->compactFqcn($this->name)); | |
| return $default; | |
| } | |
| } |