$fineTuning
$fineTuning :
DependCentralityCommand transforms a bunch of php files into a digraph and exports it into a report file with centrality informations of the dependencies of each node.
Higher rank means the vertex has many directed edges pointing to other vertices. It means the vertex has a higher risk to be changed each time there is a change somewhere in the source code (bottleneck effect)
processGraph(\Trismegiste\Mondrian\Graph\Graph $g, \Symfony\Component\Console\Output\OutputInterface $out) : \Trismegiste\Mondrian\Graph\Graph
The method that does the job : it computes/decorates/redifines the graph passed in parameter.
\Trismegiste\Mondrian\Graph\Graph | $g | the graph to process |
\Symfony\Component\Console\Output\OutputInterface | $out | console output |
the processed graph (the same or another)
createCentrality(\Trismegiste\Mondrian\Graph\Graph $g) : \Trismegiste\Mondrian\Command\Centrality
\Trismegiste\Mondrian\Graph\Graph | $g |