Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
3 / 3 |
ClassVertex | |
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; | |
/** | |
* ClassVertex is a vertex for a class | |
*/ | |
class ClassVertex extends StaticAnalysis | |
{ | |
protected function getSpecific() | |
{ | |
$default = array('shape' => 'circle', 'style' => 'filled', | |
'color' => 'red', 'label' => $this->compactFqcn($this->name)); | |
return $default; | |
} | |
} |