project_analyzer->getCodebase(); $stmts = $codebase->getStatementsForFile($this->file_path); if (empty($stmts)) { return; } $first_stmt = $stmts[0]; $this_params = null; if (($first_stmt instanceof PhpParser\Node\Stmt\Nop) && ($doc_comment = $first_stmt->getDocComment())) { $comment_block = DocComment::parse(trim($doc_comment->getText())); if (isset($comment_block['specials']['variablesfrom'])) { $variables_from = trim($comment_block['specials']['variablesfrom'][0]); $first_line_regex = '/([A-Za-z\\\0-9]+::[a-z_A-Z]+)(\s+weak)?/'; $matches = []; if (!preg_match($first_line_regex, $variables_from, $matches)) { throw new \InvalidArgumentException('Could not interpret doc comment correctly'); } $method_id = new \Psalm\Internal\MethodIdentifier(...explode('::', $matches[1])); $this_params = $this->checkMethod($method_id, $first_stmt, $codebase); if ($this_params === false) { return; } $this_params->vars_in_scope['$this'] = new Type\Union([ new Type\Atomic\TNamedObject(self::VIEW_CLASS), ]); } } if (!$this_params) { $this_params = new Context(); $this_params->check_variables = false; $this_params->self = self::VIEW_CLASS; $this_params->vars_in_scope['$this'] = new Type\Union([ new Type\Atomic\TNamedObject(self::VIEW_CLASS), ]); } $this->checkWithViewClass($this_params, $stmts); } /** * @param \Psalm\Internal\MethodIdentifier $method_id * @param PhpParser\Node $stmt * * @return Context|false */ private function checkMethod(\Psalm\Internal\MethodIdentifier $method_id, PhpParser\Node $stmt, Codebase $codebase) { if (ClassLikeAnalyzer::checkFullyQualifiedClassLikeName( $this, $method_id->fq_class_name, new CodeLocation($this, $stmt), null, [], true ) === false ) { return false; } $this_context = new Context(); $this_context->self = $method_id->fq_class_name; $class_storage = $codebase->classlike_storage_provider->get($method_id->fq_class_name); $this_context->vars_in_scope['$this'] = new Type\Union([new Type\Atomic\TNamedObject($class_storage->name)]); $this->project_analyzer->getMethodMutations( new \Psalm\Internal\MethodIdentifier($method_id->fq_class_name, '__construct'), $this_context, $this->getRootFilePath(), $this->getRootFileName() ); $this_context->vars_in_scope['$this'] = new Type\Union([new Type\Atomic\TNamedObject($class_storage->name)]); // check the actual method $this->project_analyzer->getMethodMutations( $method_id, $this_context, $this->getRootFilePath(), $this->getRootFileName() ); $view_context = new Context(); $view_context->self = strtolower(self::VIEW_CLASS); // add all $this-> vars to scope foreach ($this_context->vars_possibly_in_scope as $var => $_) { $view_context->vars_in_scope[str_replace('$this->', '$', $var)] = Type::getMixed(); } foreach ($this_context->vars_in_scope as $var => $type) { $view_context->vars_in_scope[str_replace('$this->', '$', $var)] = $type; } return $view_context; } /** * @param Context $context * @param array $stmts * * @return void */ protected function checkWithViewClass(Context $context, array $stmts) { $pseudo_method_stmts = []; foreach ($stmts as $stmt) { if ($stmt instanceof PhpParser\Node\Stmt\Use_) { $this->visitUse($stmt); } else { $pseudo_method_stmts[] = $stmt; } } $pseudo_method_name = preg_replace('/[^a-zA-Z0-9_]+/', '_', $this->file_name); $class_method = new PhpParser\Node\Stmt\ClassMethod($pseudo_method_name, ['stmts' => []]); $class = new PhpParser\Node\Stmt\Class_(self::VIEW_CLASS); $class_analyzer = new ClassAnalyzer($class, $this, self::VIEW_CLASS); $view_method_analyzer = new MethodAnalyzer($class_method, $class_analyzer); if (!$context->check_variables) { $view_method_analyzer->addSuppressedIssue('UndefinedVariable'); } $statements_source = new StatementsAnalyzer( $view_method_analyzer, new \Psalm\Internal\Provider\NodeDataProvider() ); $statements_source->analyze($pseudo_method_stmts, $context); } }