Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
[ControlFlowGraph] Fix unexpected outout to STDOUT, fix #322
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Jan 31, 2017
1 parent fae14b3 commit de759da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ControlFlow/ControlFlowGraph.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected function passNodes(array $nodes, Block $block)
// ignore commented code
break;
default:
echo 'Unimplemented ' . get_class($stmt) . PHP_EOL;
$this->context->debug('[CFG] Unimplemented ' . get_class($stmt), $stmt);
break;
}
}
Expand Down

0 comments on commit de759da

Please sign in to comment.