<?php explode(string $separator, string $string, int $limit = PHP_INT_MAX): array
<?php $parser = (new ParserFactory)->create(ParserFactory::ONLY_PHP7); $contents = File::get($path); $lines = explode(PHP_EOL, $contents); $stmts = $parser->parse($contents); $nodeFinder = new NodeFinder;