1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 18:48:03 +01:00

Fix style

This commit is contained in:
Matt Brown 2020-11-10 16:19:24 -05:00
parent 46ebca4497
commit 165e0db157
3 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,7 @@ use function is_string;
use function in_array;
use function strtolower;
use function array_map;
use function preg_match;
/**
* @internal

View File

@ -705,7 +705,7 @@ class StatementsAnalyzer extends SourceAnalyzer
&& $mean > $codebase->config->max_avg_path_length
&& $branching > 1.1
) {
echo($source->getId() . ' ' . $count . ' ' . round($mean) . ' ' . number_format($branching, 2). " \n\n");
// do something
}
}

View File

@ -7,6 +7,7 @@ use Psalm\Internal\DataFlow\DataFlowNode;
use function substr;
use function strlen;
use function array_reverse;
use function array_sum;
abstract class DataFlowGraph
{