@Override
public boolean visit(Statement s) throws Exception {
if (s instanceof ExpressionStatement) {
ExpressionStatement stmt = (ExpressionStatement) s;
if (stmt.getExpr() instanceof PHPCallExpression) {
PHPCallExpression call = (PHPCallExpression) stmt.getExpr();
if (("registerNamespaces".equals(call.getName()) || "registerNamespaceFallbacks".equals(call.getName()))
&& call.getReceiver() instanceof VariableReference) {
if (sourceModule.getElementName().equals("bootstrap.php"))