file_path = $file_path; $this->file_name = $file_name; $this->will_analyze = $will_analyze; } /** * @param array $stmts * @param bool $storage_from_cache * @param bool $debug_output * * @return void */ public function scan( Codebase $codebase, FileStorage $file_storage, $storage_from_cache = false, $debug_output = false ) { if ((!$this->will_analyze || $file_storage->deep_scan) && $storage_from_cache && !$file_storage->has_trait ) { return; } $stmts = $codebase->statements_provider->getStatementsForFile( $file_storage->file_path, $debug_output ); foreach ($stmts as $stmt) { if (!$stmt instanceof PhpParser\Node\Stmt\ClassLike && !$stmt instanceof PhpParser\Node\Stmt\Function_ ) { $file_storage->has_extra_statements = true; break; } } if ($debug_output) { if ($this->will_analyze) { echo 'Deep scanning ' . $file_storage->file_path . "\n"; } else { echo 'Scanning ' . $file_storage->file_path . "\n"; } } $traverser = new NodeTraverser(); $traverser->addVisitor(new DependencyFinderVisitor($codebase, $file_storage, $this)); $traverser->traverse($stmts); $file_storage->deep_scan = $this->will_analyze; } /** * @return string */ public function getFilePath() { return $this->file_path; } /** * @return string */ public function getFileName() { return $this->file_name; } /** * @return string */ public function getCheckedFilePath() { return $this->file_path; } /** * @return string */ public function getCheckedFileName() { return $this->file_name; } /** * @return \Psalm\Aliases */ public function getAliases() { return new \Psalm\Aliases(); } }