$fineTuning
$fineTuning :
UsedCentralityCommand transforms a bunch of php files into a digraph and exports it into a report file with centrality informations of the using of each node.
Higher rank means the vertex has many directed edges toward it (he is the target). It means each time there is a change in the vertex there are many effects accross the source code (a.k.a the ripple 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 |