mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 17:57:37 +01:00
5216 lines
196 KiB
PHP
5216 lines
196 KiB
PHP
<?php
|
|
|
|
namespace Psalm\Checker;
|
|
|
|
use PhpParser;
|
|
|
|
use Psalm\IssueBuffer;
|
|
use Psalm\Issue\ContinueOutsideLoop;
|
|
use Psalm\Issue\FailedTypeResolution;
|
|
use Psalm\Issue\ForbiddenCode;
|
|
use Psalm\Issue\InvalidArrayAccess;
|
|
use Psalm\Issue\InvalidArrayAssignment;
|
|
use Psalm\Issue\InvalidArgument;
|
|
use Psalm\Issue\InvalidContinue;
|
|
use Psalm\Issue\InvalidIterator;
|
|
use Psalm\Issue\InvalidNamespace;
|
|
use Psalm\Issue\InvalidPropertyAssignment;
|
|
use Psalm\Issue\InvalidScalarArgument;
|
|
use Psalm\Issue\InvalidScope;
|
|
use Psalm\Issue\InvalidStaticVariable;
|
|
use Psalm\Issue\InvalidPropertyFetch;
|
|
use Psalm\Issue\InvisibleProperty;
|
|
use Psalm\Issue\MixedArgument;
|
|
use Psalm\Issue\MixedArrayOffset;
|
|
use Psalm\Issue\MixedMethodCall;
|
|
use Psalm\Issue\MixedPropertyAssignment;
|
|
use Psalm\Issue\MixedPropertyFetch;
|
|
use Psalm\Issue\MixedStringOffsetAssignment;
|
|
use Psalm\Issue\MissingPropertyDeclaration;
|
|
use Psalm\Issue\NoInterfaceProperties;
|
|
use Psalm\Issue\NullPropertyAssignment;
|
|
use Psalm\Issue\NullPropertyFetch;
|
|
use Psalm\Issue\NullReference;
|
|
use Psalm\Issue\ParentNotFound;
|
|
use Psalm\Issue\PossiblyUndefinedVariable;
|
|
use Psalm\Issue\TooFewArguments;
|
|
use Psalm\Issue\TooManyArguments;
|
|
use Psalm\Issue\TypeCoercion;
|
|
use Psalm\Issue\UndefinedClass;
|
|
use Psalm\Issue\UndefinedConstant;
|
|
use Psalm\Issue\UndefinedFunction;
|
|
use Psalm\Issue\UndefinedPropertyAssignment;
|
|
use Psalm\Issue\UndefinedPropertyFetch;
|
|
use Psalm\Issue\UndefinedThisPropertyAssignment;
|
|
use Psalm\Issue\UndefinedThisPropertyFetch;
|
|
use Psalm\Issue\UndefinedVariable;
|
|
|
|
use Psalm\Type;
|
|
use Psalm\StatementsSource;
|
|
use Psalm\Config;
|
|
use Psalm\Context;
|
|
|
|
class StatementsChecker
|
|
{
|
|
protected $stmts;
|
|
|
|
/**
|
|
* @var StatementsSource
|
|
*/
|
|
protected $source;
|
|
|
|
protected $all_vars = [];
|
|
protected $warn_vars = [];
|
|
protected $class_name;
|
|
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
protected $parent_class;
|
|
|
|
/** @var string */
|
|
protected $namespace;
|
|
|
|
/** @var array<string,string> */
|
|
protected $aliased_classes;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $file_name;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $checked_file_name;
|
|
|
|
/**
|
|
* @var string|null
|
|
*/
|
|
protected $include_file_name;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $is_static;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $absolute_class;
|
|
|
|
/**
|
|
* @var TypeChecker
|
|
*/
|
|
protected $type_checker;
|
|
|
|
protected $available_functions = [];
|
|
|
|
/**
|
|
* A list of suppressed issues
|
|
* @var array
|
|
*/
|
|
protected $suppressed_issues;
|
|
|
|
protected $require_file_name = null;
|
|
|
|
protected $existing_functions = [];
|
|
|
|
/**
|
|
* A list of classes checked with class_exists
|
|
* @var array
|
|
*/
|
|
protected $phantom_classes = [];
|
|
|
|
/** @var array<string,array<int,string>> */
|
|
protected static $method_call_index = [];
|
|
protected static $reflection_functions = [];
|
|
|
|
/**
|
|
* @var array<string,array<string,Type\Union>>
|
|
*/
|
|
protected static $this_assignments = [];
|
|
protected static $this_calls = [];
|
|
|
|
protected static $mock_interfaces = [];
|
|
|
|
protected static $user_constants = [];
|
|
|
|
public function __construct(StatementsSource $source)
|
|
{
|
|
$this->source = $source;
|
|
$this->file_name = $this->source->getFileName();
|
|
$this->checked_file_name = $this->source->getCheckedFileName();
|
|
$this->aliased_classes = $this->source->getAliasedClasses();
|
|
$this->namespace = $this->source->getNamespace();
|
|
$this->is_static = $this->source->isStatic();
|
|
$this->absolute_class = $this->source->getAbsoluteClass();
|
|
$this->class_name = $this->source->getClassName();
|
|
$this->parent_class = $this->source->getParentClass();
|
|
$this->suppressed_issues = $this->source->getSuppressedIssues();
|
|
|
|
$config = Config::getInstance();
|
|
|
|
$this->type_checker = new TypeChecker($source, $this);
|
|
}
|
|
|
|
/**
|
|
* Checks an array of statements for validity
|
|
*
|
|
* @param array<PhpParser\Node> $stmts
|
|
* @param Context $context
|
|
* @param Context|null $loop_context
|
|
* @return null|false
|
|
*/
|
|
public function check(array $stmts, Context $context, Context $loop_context = null)
|
|
{
|
|
$has_returned = false;
|
|
|
|
$function_checkers = [];
|
|
|
|
// hoist functions to the top
|
|
foreach ($stmts as $stmt) {
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Function_) {
|
|
$function_checker = new FunctionChecker($stmt, $this->source, $context->file_name);
|
|
$function_checkers[$stmt->name] = $function_checker;
|
|
}
|
|
}
|
|
|
|
foreach ($stmts as $stmt) {
|
|
foreach (Config::getInstance()->getPlugins() as $plugin) {
|
|
if ($plugin->checkStatement($stmt, $context, $this->checked_file_name) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($has_returned && !($stmt instanceof PhpParser\Node\Stmt\Nop) && !($stmt instanceof PhpParser\Node\Stmt\InlineHTML)) {
|
|
echo('Warning: Expressions after return/throw/continue in ' . $this->checked_file_name . ' on line ' . $stmt->getLine() . PHP_EOL);
|
|
break;
|
|
}
|
|
|
|
/*
|
|
if (isset($context->vars_in_scope['$a[\'b\']'])) {
|
|
var_dump($stmt->getLine() . ' ' . $context->vars_in_scope['$a[\'b\']']);
|
|
}
|
|
*/
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\If_) {
|
|
$this->checkIf($stmt, $context, $loop_context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\TryCatch) {
|
|
$this->checkTryCatch($stmt, $context, $loop_context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\For_) {
|
|
$this->checkFor($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Foreach_) {
|
|
$this->checkForeach($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\While_) {
|
|
$this->checkWhile($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Do_) {
|
|
$this->checkDo($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Const_) {
|
|
$this->checkConstAssignment($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Unset_) {
|
|
foreach ($stmt->vars as $var) {
|
|
$var_id = self::getArrayVarId($var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($var_id) {
|
|
$context->remove($var_id);
|
|
}
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Return_) {
|
|
$has_returned = true;
|
|
$this->checkReturn($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Throw_) {
|
|
$has_returned = true;
|
|
$this->checkThrow($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Switch_) {
|
|
$this->checkSwitch($stmt, $context, $loop_context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Break_) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Continue_) {
|
|
if ($loop_context === null) {
|
|
if (IssueBuffer::accepts(
|
|
new ContinueOutsideLoop('Continue call outside loop context', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$has_returned = true;
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Static_) {
|
|
$this->checkStatic($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Echo_) {
|
|
foreach ($stmt->exprs as $expr) {
|
|
$this->checkExpression($expr, $context);
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Function_) {
|
|
$function_context = new Context($this->file_name, $context->self);
|
|
$function_checkers[$stmt->name]->check($function_context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr) {
|
|
$this->checkExpression($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\InlineHTML) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Use_) {
|
|
foreach ($stmt->uses as $use) {
|
|
$this->aliased_classes[strtolower($use->alias)] = implode('\\', $use->name->parts);
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Global_) {
|
|
foreach ($stmt->vars as $var) {
|
|
if ($var instanceof PhpParser\Node\Expr\Variable) {
|
|
if (is_string($var->name)) {
|
|
$context->vars_in_scope['$' . $var->name] = Type::getMixed();
|
|
$context->vars_possibly_in_scope['$' . $var->name] = true;
|
|
} else {
|
|
$this->checkExpression($var, $context);
|
|
}
|
|
}
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Property) {
|
|
foreach ($stmt->props as $prop) {
|
|
if ($prop->default) {
|
|
$this->checkExpression($prop->default, $context);
|
|
|
|
if (isset($prop->default->inferredType)) {
|
|
if (!$stmt->isStatic()) {
|
|
if ($this->checkPropertyAssignment($prop, $prop->name, $prop->default->inferredType, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\ClassConst) {
|
|
foreach ($stmt->consts as $const) {
|
|
$this->checkExpression($const->value, $context);
|
|
|
|
if (isset($const->value->inferredType) && !$const->value->inferredType->isMixed()) {
|
|
ClassLikeChecker::setConstantType($this->absolute_class, $const->name, $const->value->inferredType);
|
|
}
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Class_) {
|
|
(new ClassChecker($stmt, $this->source, $stmt->name))->check();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Nop) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\Namespace_) {
|
|
if ($this->namespace) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidNamespace('Cannot redeclare namespace', $this->require_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$namespace_checker = new NamespaceChecker($stmt, $this->source);
|
|
$namespace_checker->check(true);
|
|
} else {
|
|
var_dump('Unrecognised statement in ' . $this->checked_file_name);
|
|
var_dump($stmt);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* System of type substitution and deletion
|
|
*
|
|
* for example
|
|
*
|
|
* x: A|null
|
|
*
|
|
* if (x)
|
|
* (x: A)
|
|
* x = B -- effects: remove A from the type of x, add B
|
|
* else
|
|
* (x: null)
|
|
* x = C -- effects: remove null from the type of x, add C
|
|
*
|
|
*
|
|
* x: A|null
|
|
*
|
|
* if (!x)
|
|
* (x: null)
|
|
* throw new Exception -- effects: remove null from the type of x
|
|
*
|
|
*
|
|
* @param PhpParser\Node\Stmt\If_ $stmt
|
|
* @param Context $context
|
|
* @param Context|null $loop_context
|
|
* @return null|false
|
|
*/
|
|
protected function checkIf(PhpParser\Node\Stmt\If_ $stmt, Context $context, Context $loop_context = null)
|
|
{
|
|
// get the first expression in the if, which should be evaluated on its own
|
|
// this allows us to update the context of $matches in
|
|
// if (!preg_match('/a/', 'aa', $matches)) {
|
|
// exit
|
|
// }
|
|
// echo $matches[0];
|
|
$first_if_cond_expr = $this->getFirstFunctionCall($stmt->cond);
|
|
|
|
if ($first_if_cond_expr && $this->checkExpression($first_if_cond_expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$if_context = clone $context;
|
|
|
|
// we need to clone the current context so our ongoing updates to $context don't mess with elseif/else blocks
|
|
$original_context = clone $context;
|
|
|
|
if ($first_if_cond_expr !== $stmt->cond && $this->checkExpression($stmt->cond, $if_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$reconcilable_if_types = null;
|
|
$negatable_if_types = null;
|
|
|
|
if ($stmt->cond instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
$reconcilable_if_types = $this->type_checker->getReconcilableTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
|
|
$negatable_if_types = $this->type_checker->getNegatableTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
}
|
|
else {
|
|
$reconcilable_if_types = $negatable_if_types = $this->type_checker->getTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes);
|
|
}
|
|
|
|
$has_ending_statements = ScopeChecker::doesAlwaysReturnOrThrow($stmt->stmts);
|
|
|
|
$has_leaving_statements = $has_ending_statements || ScopeChecker::doesAlwaysBreakOrContinue($stmt->stmts);
|
|
|
|
$negated_types = $negatable_if_types ? TypeChecker::negateTypes($negatable_if_types) : [];
|
|
|
|
$negated_if_types = $negated_types;
|
|
|
|
// if the if has an || in the conditional, we cannot easily reason about it
|
|
if ($reconcilable_if_types) {
|
|
$if_vars_in_scope_reconciled =
|
|
TypeChecker::reconcileKeyedTypes(
|
|
$reconcilable_if_types,
|
|
$if_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($if_vars_in_scope_reconciled === false) {
|
|
return false;
|
|
}
|
|
|
|
$if_context->vars_in_scope = $if_vars_in_scope_reconciled;
|
|
$if_context->vars_possibly_in_scope = array_merge($reconcilable_if_types, $if_context->vars_possibly_in_scope);
|
|
}
|
|
|
|
$old_if_context = clone $if_context;
|
|
$context->vars_possibly_in_scope = array_merge($if_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
|
|
$else_context = clone $original_context;
|
|
|
|
if ($negated_types) {
|
|
$else_vars_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$negated_types,
|
|
$else_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($else_vars_reconciled === false) {
|
|
return false;
|
|
}
|
|
$else_context->vars_in_scope = $else_vars_reconciled;
|
|
}
|
|
|
|
// we calculate the vars redefined in a hypothetical else statement to determine
|
|
// which vars of the if we can safely change
|
|
$pre_assignment_else_redefined_vars = Context::getRedefinedVars($context, $else_context);
|
|
|
|
if ($this->check($stmt->stmts, $if_context, $loop_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$forced_new_vars = null;
|
|
$new_vars = null;
|
|
$new_vars_possibly_in_scope = [];
|
|
$redefined_vars = null;
|
|
$possibly_redefined_vars = [];
|
|
|
|
$redefined_loop_vars = null;
|
|
$possibly_redefined_loop_vars = [];
|
|
|
|
$updated_vars = [];
|
|
$updated_loop_vars = [];
|
|
|
|
$mic_drop = false;
|
|
|
|
if (count($stmt->stmts)) {
|
|
if (!$has_leaving_statements) {
|
|
$new_vars = array_diff_key($if_context->vars_in_scope, $context->vars_in_scope);
|
|
|
|
// if we have a check like if (!isset($a)) { $a = true; } we want to make sure $a is always set
|
|
foreach ($new_vars as $var_id => $type) {
|
|
if (isset($negated_if_types[$var_id]) && $negated_if_types[$var_id] === '!null') {
|
|
$forced_new_vars[$var_id] = Type::getMixed();
|
|
}
|
|
}
|
|
|
|
$redefined_vars = Context::getRedefinedVars($context, $if_context);
|
|
$possibly_redefined_vars = $redefined_vars;
|
|
}
|
|
elseif (!$stmt->else && !$stmt->elseifs && $negated_types) {
|
|
$context_vars_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$negated_types,
|
|
$context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($context_vars_reconciled === false) {
|
|
return false;
|
|
}
|
|
|
|
$context->vars_in_scope = $context_vars_reconciled;
|
|
$mic_drop = true;
|
|
}
|
|
|
|
|
|
// update the parent context as necessary, but only if we can safely reason about type negation.
|
|
// We only update vars that changed both at the start of the if block and then again by an assignment
|
|
// in the if statement.
|
|
if ($negatable_if_types && !$mic_drop) {
|
|
$context->update(
|
|
$old_if_context,
|
|
$if_context,
|
|
$has_leaving_statements,
|
|
array_intersect(array_keys($pre_assignment_else_redefined_vars), array_keys($negatable_if_types)),
|
|
$updated_vars
|
|
);
|
|
}
|
|
|
|
if (!$has_ending_statements) {
|
|
$vars = array_diff_key($if_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
|
|
if ($has_leaving_statements && $loop_context) {
|
|
$redefined_loop_vars = Context::getRedefinedVars($loop_context, $if_context);
|
|
$possibly_redefined_loop_vars = $redefined_loop_vars;
|
|
}
|
|
|
|
// if we're leaving this block, add vars to outer for loop scope
|
|
if ($has_leaving_statements) {
|
|
if ($loop_context) {
|
|
$loop_context->vars_possibly_in_scope = array_merge($loop_context->vars_possibly_in_scope, $vars);
|
|
}
|
|
}
|
|
else {
|
|
$new_vars_possibly_in_scope = $vars;
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($stmt->elseifs as $elseif) {
|
|
$elseif_context = clone $original_context;
|
|
|
|
if ($negated_types) {
|
|
$elseif_vars_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$negated_types,
|
|
$elseif_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($elseif_vars_reconciled === false) {
|
|
return false;
|
|
}
|
|
$elseif_context->vars_in_scope = $elseif_vars_reconciled;
|
|
}
|
|
|
|
if ($elseif->cond instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
$reconcilable_elseif_types = $this->type_checker->getReconcilableTypeAssertions(
|
|
$elseif->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
$negatable_elseif_types = $this->type_checker->getNegatableTypeAssertions(
|
|
$elseif->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
}
|
|
else {
|
|
$reconcilable_elseif_types = $negatable_elseif_types = $this->type_checker->getTypeAssertions(
|
|
$elseif->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes);
|
|
}
|
|
|
|
$negated_elseif_types = $negatable_elseif_types
|
|
? TypeChecker::negateTypes($negatable_elseif_types)
|
|
: [];
|
|
|
|
$all_negated_vars = array_unique(array_merge(array_keys($negated_elseif_types), array_keys($negated_types)));
|
|
|
|
foreach ($all_negated_vars as $var_id) {
|
|
if (isset($negated_elseif_types[$var_id])) {
|
|
if (isset($negated_types[$var_id])) {
|
|
$negated_types[$var_id] = $negated_types[$var_id] . '&' . $negated_elseif_types[$var_id];
|
|
}
|
|
else {
|
|
$negated_types[$var_id] = $negated_elseif_types[$var_id];
|
|
}
|
|
}
|
|
}
|
|
|
|
// if the elseif has an || in the conditional, we cannot easily reason about it
|
|
if ($reconcilable_elseif_types) {
|
|
$elseif_vars_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$reconcilable_elseif_types,
|
|
$elseif_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($elseif_vars_reconciled === false) {
|
|
return false;
|
|
}
|
|
|
|
$elseif_context->vars_in_scope = $elseif_vars_reconciled;
|
|
}
|
|
|
|
// check the elseif
|
|
if ($this->checkExpression($elseif->cond, $elseif_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$old_elseif_context = clone $elseif_context;
|
|
|
|
if ($this->check($elseif->stmts, $elseif_context, $loop_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (count($elseif->stmts)) {
|
|
// has a return/throw at end
|
|
$has_ending_statements = ScopeChecker::doesAlwaysReturnOrThrow($elseif->stmts);
|
|
|
|
$has_leaving_statements = $has_ending_statements || ScopeChecker::doesAlwaysBreakOrContinue($elseif->stmts);
|
|
|
|
// update the parent context as necessary
|
|
$elseif_redefined_vars = Context::getRedefinedVars($original_context, $elseif_context);
|
|
|
|
if (!$has_leaving_statements) {
|
|
if ($new_vars === null) {
|
|
$new_vars = array_diff_key($elseif_context->vars_in_scope, $context->vars_in_scope);
|
|
}
|
|
else {
|
|
foreach ($new_vars as $new_var => $type) {
|
|
if (!isset($elseif_context->vars_in_scope[$new_var])) {
|
|
unset($new_vars[$new_var]);
|
|
}
|
|
else {
|
|
$new_vars[$new_var] = Type::combineUnionTypes($type, $elseif_context->vars_in_scope[$new_var]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($redefined_vars === null) {
|
|
$redefined_vars = $elseif_redefined_vars;
|
|
$possibly_redefined_vars = $redefined_vars;
|
|
}
|
|
else {
|
|
foreach ($redefined_vars as $redefined_var => $type) {
|
|
if (!isset($elseif_redefined_vars[$redefined_var])) {
|
|
unset($redefined_vars[$redefined_var]);
|
|
}
|
|
else {
|
|
$redefined_vars[$redefined_var] = Type::combineUnionTypes($elseif_redefined_vars[$redefined_var], $type);
|
|
}
|
|
}
|
|
|
|
foreach ($elseif_redefined_vars as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
$possibly_redefined_vars[$var] = $type;
|
|
}
|
|
else if (isset($possibly_redefined_vars[$var])) {
|
|
$possibly_redefined_vars[$var] = Type::combineUnionTypes($type, $possibly_redefined_vars[$var]);
|
|
}
|
|
else {
|
|
$possibly_redefined_vars[$var] = $type;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($negatable_elseif_types) {
|
|
$context->update($old_elseif_context, $elseif_context, $has_leaving_statements, array_keys($negated_elseif_types), $updated_vars);
|
|
}
|
|
|
|
if (!$has_ending_statements) {
|
|
$vars = array_diff_key($elseif_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
|
|
// if we're leaving this block, add vars to outer for loop scope
|
|
if ($has_leaving_statements && $loop_context) {
|
|
if ($redefined_loop_vars === null) {
|
|
$redefined_loop_vars = $elseif_redefined_vars;
|
|
$possibly_redefined_loop_vars = $redefined_loop_vars;
|
|
}
|
|
else {
|
|
foreach ($redefined_loop_vars as $redefined_var => $type) {
|
|
if (!isset($elseif_redefined_vars[$redefined_var])) {
|
|
unset($redefined_loop_vars[$redefined_var]);
|
|
}
|
|
else {
|
|
$redefined_loop_vars[$redefined_var] = Type::combineUnionTypes($elseif_redefined_vars[$redefined_var], $type);
|
|
}
|
|
}
|
|
|
|
foreach ($elseif_redefined_vars as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
$possibly_redefined_loop_vars[$var] = $type;
|
|
}
|
|
else if (isset($possibly_redefined_loop_vars[$var])) {
|
|
$possibly_redefined_loop_vars[$var] = Type::combineUnionTypes($type, $possibly_redefined_loop_vars[$var]);
|
|
}
|
|
else {
|
|
$possibly_redefined_loop_vars[$var] = $type;
|
|
}
|
|
}
|
|
}
|
|
|
|
$loop_context->vars_possibly_in_scope = array_merge($vars, $loop_context->vars_possibly_in_scope);
|
|
}
|
|
elseif (!$has_leaving_statements) {
|
|
$new_vars_possibly_in_scope = array_merge($vars, $new_vars_possibly_in_scope);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($stmt->else) {
|
|
$else_context = clone $original_context;
|
|
|
|
if ($negated_types) {
|
|
$else_vars_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$negated_types,
|
|
$else_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($else_vars_reconciled === false) {
|
|
return false;
|
|
}
|
|
$else_context->vars_in_scope = $else_vars_reconciled;
|
|
}
|
|
|
|
$old_else_context = clone $else_context;
|
|
|
|
if ($this->check($stmt->else->stmts, $else_context, $loop_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (count($stmt->else->stmts)) {
|
|
// has a return/throw at end
|
|
$has_ending_statements = ScopeChecker::doesAlwaysReturnOrThrow($stmt->else->stmts);
|
|
|
|
$has_leaving_statements = $has_ending_statements || ScopeChecker::doesAlwaysBreakOrContinue($stmt->else->stmts);
|
|
|
|
/** @var Context $original_context */
|
|
$else_redefined_vars = Context::getRedefinedVars($original_context, $else_context);
|
|
|
|
// if it doesn't end in a return
|
|
if (!$has_leaving_statements) {
|
|
if ($new_vars === null) {
|
|
$new_vars = array_diff_key($else_context->vars_in_scope, $context->vars_in_scope);
|
|
}
|
|
else {
|
|
foreach ($new_vars as $new_var => $type) {
|
|
if (!isset($else_context->vars_in_scope[$new_var])) {
|
|
unset($new_vars[$new_var]);
|
|
}
|
|
else {
|
|
$new_vars[$new_var] = Type::combineUnionTypes($type, $else_context->vars_in_scope[$new_var]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($redefined_vars === null) {
|
|
$redefined_vars = $else_redefined_vars;
|
|
$possibly_redefined_vars = $redefined_vars;
|
|
}
|
|
else {
|
|
foreach ($redefined_vars as $redefined_var => $type) {
|
|
if (!isset($else_redefined_vars[$redefined_var])) {
|
|
unset($redefined_vars[$redefined_var]);
|
|
}
|
|
else {
|
|
$redefined_vars[$redefined_var] = Type::combineUnionTypes($else_redefined_vars[$redefined_var], $type);
|
|
}
|
|
}
|
|
|
|
foreach ($else_redefined_vars as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
$possibly_redefined_vars[$var] = $type;
|
|
}
|
|
else if (isset($possibly_redefined_vars[$var])) {
|
|
$possibly_redefined_vars[$var] = Type::combineUnionTypes($type, $possibly_redefined_vars[$var]);
|
|
}
|
|
else {
|
|
$possibly_redefined_vars[$var] = $type;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// update the parent context as necessary
|
|
if ($negatable_if_types) {
|
|
$context->update($old_else_context, $else_context, $has_leaving_statements, array_keys($negatable_if_types), $updated_vars);
|
|
}
|
|
|
|
if (!$has_ending_statements) {
|
|
$vars = array_diff_key($else_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
|
|
if ($has_leaving_statements && $loop_context) {
|
|
if ($redefined_loop_vars === null) {
|
|
$redefined_loop_vars = $else_redefined_vars;
|
|
$possibly_redefined_loop_vars = $redefined_loop_vars;
|
|
}
|
|
else {
|
|
foreach ($redefined_loop_vars as $redefined_var => $type) {
|
|
if (!isset($else_redefined_vars[$redefined_var])) {
|
|
unset($redefined_loop_vars[$redefined_var]);
|
|
}
|
|
else {
|
|
$redefined_loop_vars[$redefined_var] = Type::combineUnionTypes($else_redefined_vars[$redefined_var], $type);
|
|
}
|
|
}
|
|
|
|
foreach ($else_redefined_vars as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
$possibly_redefined_loop_vars[$var] = $type;
|
|
}
|
|
else if (isset($possibly_redefined_loop_vars[$var])) {
|
|
$possibly_redefined_loop_vars[$var] = Type::combineUnionTypes($type, $possibly_redefined_loop_vars[$var]);
|
|
}
|
|
else {
|
|
$possibly_redefined_loop_vars[$var] = $type;
|
|
}
|
|
}
|
|
}
|
|
|
|
$loop_context->vars_possibly_in_scope = array_merge($vars, $loop_context->vars_possibly_in_scope);
|
|
}
|
|
elseif (!$has_leaving_statements) {
|
|
$new_vars_possibly_in_scope = array_merge($vars, $new_vars_possibly_in_scope);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$context->vars_possibly_in_scope = array_merge($context->vars_possibly_in_scope, $new_vars_possibly_in_scope);
|
|
|
|
// vars can only be defined/redefined if there was an else (defined in every block)
|
|
if ($stmt->else) {
|
|
if ($new_vars) {
|
|
$context->vars_in_scope = array_merge($context->vars_in_scope, $new_vars);
|
|
}
|
|
|
|
if ($redefined_vars) {
|
|
foreach ($redefined_vars as $var => $type) {
|
|
$context->vars_in_scope[$var] = $type;
|
|
$updated_vars[$var] = true;
|
|
}
|
|
}
|
|
|
|
if ($redefined_loop_vars && $loop_context) {
|
|
foreach ($redefined_loop_vars as $var => $type) {
|
|
$loop_context->vars_in_scope[$var] = $type;
|
|
$updated_loop_vars[$var] = true;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
if ($forced_new_vars) {
|
|
$context->vars_in_scope = array_merge($context->vars_in_scope, $forced_new_vars);
|
|
}
|
|
}
|
|
|
|
if ($possibly_redefined_vars) {
|
|
foreach ($possibly_redefined_vars as $var => $type) {
|
|
if (isset($context->vars_in_scope[$var]) && !isset($updated_vars[$var])) {
|
|
$context->vars_in_scope[$var] = Type::combineUnionTypes($context->vars_in_scope[$var], $type);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($possibly_redefined_loop_vars && $loop_context) {
|
|
foreach ($possibly_redefined_loop_vars as $var => $type) {
|
|
if (isset($loop_context->vars_in_scope[$var]) && !isset($updated_loop_vars[$var])) {
|
|
$loop_context->vars_in_scope[$var] = Type::combineUnionTypes($loop_context->vars_in_scope[$var], $type);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkStatic(PhpParser\Node\Stmt\Static_ $stmt, Context $context)
|
|
{
|
|
foreach ($stmt->vars as $var) {
|
|
if ($var->default) {
|
|
if ($this->checkExpression($var->default, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($context->check_variables) {
|
|
$context->vars_in_scope['$' . $var->name] = $var->default && isset($var->default->inferredType)
|
|
? $var->default->inferredType
|
|
: Type::getMixed();
|
|
|
|
$context->vars_possibly_in_scope['$' . $var->name] = true;
|
|
$this->registerVariable('$' . $var->name, $var->getLine());
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkExpression(
|
|
PhpParser\Node\Expr $stmt,
|
|
Context $context,
|
|
$array_assignment = false,
|
|
Type\Union $assignment_key_type = null,
|
|
Type\Union $assignment_value_type = null,
|
|
$assignment_key_value = null
|
|
) {
|
|
if ($stmt instanceof PhpParser\Node\Expr\Variable) {
|
|
if ($this->checkVariable($stmt, $context, null, null, $array_assignment) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Assign) {
|
|
if ($this->checkAssignment($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\AssignOp) {
|
|
if ($this->checkAssignmentOperation($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\MethodCall) {
|
|
if ($this->checkMethodCall($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\StaticCall) {
|
|
if ($this->checkStaticCall($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ConstFetch) {
|
|
if ($this->checkConstFetch($stmt) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\String_) {
|
|
$stmt->inferredType = Type::getString();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\EncapsedStringPart) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\LNumber) {
|
|
$stmt->inferredType = Type::getInt();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\DNumber) {
|
|
$stmt->inferredType = Type::getFloat();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\UnaryMinus) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\UnaryPlus) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Isset_) {
|
|
foreach ($stmt->vars as $isset_var) {
|
|
if ($isset_var instanceof PhpParser\Node\Expr\PropertyFetch &&
|
|
$isset_var->var instanceof PhpParser\Node\Expr\Variable &&
|
|
$isset_var->var->name === 'this' &&
|
|
is_string($isset_var->name)
|
|
) {
|
|
$var_id = '$this->' . $isset_var->name;
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
}
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ClassConstFetch) {
|
|
if ($this->checkClassConstFetch($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PropertyFetch) {
|
|
if ($this->checkPropertyFetch($stmt, $context, $array_assignment) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\StaticPropertyFetch) {
|
|
if ($this->checkStaticPropertyFetch($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BitwiseNot) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
if ($this->checkBinaryOp($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PostInc) {
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PostDec) {
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PreInc) {
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PreDec) {
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\New_) {
|
|
if ($this->checkNew($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Array_) {
|
|
if ($this->checkArray($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\Encapsed) {
|
|
if ($this->checkEncapsulatedString($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\FuncCall) {
|
|
if ($this->checkFunctionCall($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Ternary) {
|
|
if ($this->checkTernary($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BooleanNot) {
|
|
if ($this->checkBooleanNot($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Empty_) {
|
|
if ($this->checkEmpty($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Closure) {
|
|
$closure_checker = new ClosureChecker($stmt, $this->source);
|
|
|
|
if ($this->checkClosureUses($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$use_context = new Context($this->file_name, $context->self);
|
|
|
|
if (!$this->is_static) {
|
|
$this_class = ClassLikeChecker::getThisClass();
|
|
$this_class = $this_class && ClassChecker::classExtends($this_class, $this->absolute_class)
|
|
? $this_class
|
|
: $context->self;
|
|
|
|
if ($this_class) {
|
|
$use_context->vars_in_scope['$this'] = new Type\Union([new Type\Atomic($this_class)]);
|
|
}
|
|
}
|
|
|
|
foreach ($context->vars_in_scope as $var => $type) {
|
|
if (strpos($var, '$this->') === 0) {
|
|
$use_context->vars_in_scope[$var] = clone $type;
|
|
}
|
|
}
|
|
|
|
foreach ($context->vars_possibly_in_scope as $var => $type) {
|
|
if (strpos($var, '$this->') === 0) {
|
|
$use_context->vars_possibly_in_scope[$var] = true;
|
|
}
|
|
}
|
|
|
|
foreach ($stmt->uses as $use) {
|
|
$use_context->vars_in_scope['$' . $use->var] = isset($context->vars_in_scope['$' . $use->var]) ? clone $context->vars_in_scope['$' . $use->var] : Type::getMixed();
|
|
$use_context->vars_possibly_in_scope['$' . $use->var] = true;
|
|
}
|
|
|
|
$closure_checker->check($use_context, $context->check_methods);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
|
if ($this->checkArrayAccess($stmt, $context, $array_assignment, $assignment_key_type, $assignment_value_type, $assignment_key_value) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Int_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
$stmt->inferredType = Type::getInt();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Double) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
$stmt->inferredType = Type::getFloat();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Bool_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
$stmt->inferredType = Type::getBool();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\String_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
$stmt->inferredType = Type::getString();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Object_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
$stmt->inferredType = Type::getObject();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Array_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
$stmt->inferredType = Type::getArray();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Clone_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (property_exists($stmt->expr, 'inferredType')) {
|
|
$stmt->inferredType = $stmt->expr->inferredType;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Instanceof_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($stmt->class instanceof PhpParser\Node\Name && !in_array($stmt->class->parts[0], ['self', 'static', 'parent'])) {
|
|
if ($context->check_classes) {
|
|
$absolute_class = ClassLikeChecker::getAbsoluteClassFromName($stmt->class, $this->namespace, $this->aliased_classes);
|
|
|
|
if (ClassLikeChecker::checkAbsoluteClassOrInterface($absolute_class, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Exit_) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Include_) {
|
|
$this->checkInclude($stmt, $context);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Eval_) {
|
|
$context->check_classes = false;
|
|
$context->check_variables = false;
|
|
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\AssignRef) {
|
|
if ($stmt->var instanceof PhpParser\Node\Expr\Variable) {
|
|
if (is_string($stmt->var->name)) {
|
|
$context->vars_in_scope['$' . $stmt->var->name] = Type::getMixed();
|
|
$context->vars_possibly_in_scope['$' . $stmt->var->name] = true;
|
|
$this->registerVariable('$' . $stmt->var->name, $stmt->var->getLine());
|
|
}
|
|
else {
|
|
if ($this->checkExpression($stmt->var->name, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
} else {
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ErrorSuppress) {
|
|
// do nothing
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ShellExec) {
|
|
if (IssueBuffer::accepts(
|
|
new ForbiddenCode('Use of shell_exec', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Print_) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
} else {
|
|
var_dump('Unrecognised expression in ' . $this->checked_file_name);
|
|
var_dump($stmt);
|
|
}
|
|
|
|
foreach (Config::getInstance()->getPlugins() as $plugin) {
|
|
if ($plugin->checkExpression($stmt, $context, $this->checked_file_name) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkVariable(PhpParser\Node\Expr\Variable $stmt, Context $context, $passed_by_reference = false, Type\Union $by_ref_type = null, $array_assignment = false)
|
|
{
|
|
if ($this->is_static && $stmt->name === 'this') {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidStaticVariable('Invalid reference to $this in a static context', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (!$context->check_variables) {
|
|
$stmt->inferredType = Type::getMixed();
|
|
|
|
if (is_string($stmt->name) && !isset($context->vars_in_scope['$' . $stmt->name])) {
|
|
$context->vars_in_scope['$' . $stmt->name] = Type::getMixed();
|
|
$context->vars_possibly_in_scope['$' . $stmt->name] = true;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (in_array($stmt->name, ['_SERVER', '_GET', '_POST', '_COOKIE', '_REQUEST', '_FILES', '_ENV', 'GLOBALS', 'argv'])) {
|
|
return;
|
|
}
|
|
|
|
if (!is_string($stmt->name)) {
|
|
return $this->checkExpression($stmt->name, $context);
|
|
}
|
|
|
|
if ($stmt->name === 'this') {
|
|
return;
|
|
}
|
|
|
|
if ($passed_by_reference && $by_ref_type) {
|
|
$this->assignByRefParam($stmt, $by_ref_type, $context);
|
|
return;
|
|
}
|
|
|
|
$var_name = '$' . $stmt->name;
|
|
|
|
if (!isset($context->vars_in_scope[$var_name])) {
|
|
if (!isset($context->vars_possibly_in_scope[$var_name]) || !isset($this->all_vars[$var_name])) {
|
|
if ($array_assignment) {
|
|
// if we're in an array assignment, let's assign the variable
|
|
// because PHP allows it
|
|
|
|
$context->vars_in_scope[$var_name] = Type::getArray();
|
|
$context->vars_possibly_in_scope[$var_name] = true;
|
|
$this->registerVariable($var_name, $stmt->getLine());
|
|
}
|
|
else {
|
|
IssueBuffer::add(
|
|
new UndefinedVariable('Cannot find referenced variable ' . $var_name, $this->checked_file_name, $stmt->getLine())
|
|
);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (isset($this->all_vars[$var_name]) && !isset($this->warn_vars[$var_name])) {
|
|
$this->warn_vars[$var_name] = true;
|
|
|
|
if (IssueBuffer::accepts(
|
|
new PossiblyUndefinedVariable(
|
|
'Possibly undefined variable ' . $var_name .', first seen on line ' . $this->all_vars[$var_name],
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
$stmt->inferredType = $context->vars_in_scope[$var_name];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Type\Union|null
|
|
*/
|
|
public static function getSimpleType(PhpParser\Node\Expr $stmt)
|
|
{
|
|
if ($stmt instanceof PhpParser\Node\Expr\ConstFetch) {
|
|
// @todo support this
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\ClassConstFetch) {
|
|
// @todo support this as well
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Scalar\String_) {
|
|
return Type::getString();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Scalar\LNumber) {
|
|
return Type::getInt();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Scalar\DNumber) {
|
|
return Type::getFloat();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Array_) {
|
|
return Type::getArray();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Int_) {
|
|
return Type::getInt();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Double) {
|
|
return Type::getFloat();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Bool_) {
|
|
return Type::getBool();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Cast\String_) {
|
|
return Type::getString();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Object_) {
|
|
return Type::getObject();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Array_) {
|
|
return Type::getArray();
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\UnaryMinus || $stmt instanceof PhpParser\Node\Expr\UnaryPlus) {
|
|
return self::getSimpleType($stmt->expr);
|
|
}
|
|
else {
|
|
var_dump('Unrecognised default property type');
|
|
var_dump($stmt);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr\Variable|PhpParser\Node\Expr\PropertyFetch $stmt
|
|
* @param Type\Union $by_ref_type
|
|
* @param Context $context
|
|
* @return void
|
|
*/
|
|
protected function assignByRefParam(PhpParser\Node\Expr $stmt, Type\Union $by_ref_type, Context $context)
|
|
{
|
|
$var_id = self::getVarId($stmt, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($var_id && !isset($context->vars_in_scope[$var_id])) {
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
$this->registerVariable($var_id, $stmt->getLine());
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\PropertyFetch
|
|
&& $this->source instanceof FunctionLikeChecker
|
|
&& ($this_method_id = $this->source->getMethodId())
|
|
) {
|
|
if (!isset(self::$this_assignments[$this_method_id])) {
|
|
self::$this_assignments[$this_method_id] = [];
|
|
}
|
|
|
|
self::$this_assignments[$this_method_id][$stmt->name] = Type::getMixed();
|
|
}
|
|
}
|
|
|
|
$stmt->inferredType = $by_ref_type;
|
|
|
|
$context->vars_in_scope[$var_id] = $by_ref_type;
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkPropertyFetch(PhpParser\Node\Expr\PropertyFetch $stmt, Context $context, $array_assignment = false)
|
|
{
|
|
if (!is_string($stmt->name)) {
|
|
if ($this->checkExpression($stmt->name, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$var_id = null;
|
|
|
|
if (!($stmt->var instanceof PhpParser\Node\Expr\Variable)) {
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
else{
|
|
if ($this->checkVariable($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$stmt_var_id = self::getVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
$var_id = self::getVarId($stmt, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
$var_name = is_string($stmt->name) ? $stmt->name : null;
|
|
|
|
$stmt_var_type = null;
|
|
|
|
if ($var_id && isset($context->vars_in_scope[$var_id])) {
|
|
// we don't need to check anything
|
|
$stmt->inferredType = $context->vars_in_scope[$var_id];
|
|
return;
|
|
}
|
|
|
|
if ($stmt_var_id && isset($context->vars_in_scope[$stmt_var_id])) {
|
|
$stmt_var_type = $context->vars_in_scope[$stmt_var_id];
|
|
}
|
|
elseif (isset($stmt->var->inferredType)) {
|
|
/** @var Type\Union */
|
|
$stmt_var_type = $stmt->var->inferredType;
|
|
}
|
|
|
|
if (!$stmt_var_type) {
|
|
return;
|
|
}
|
|
|
|
if ($stmt_var_type->isNull()) {
|
|
if (IssueBuffer::accepts(
|
|
new NullReference(
|
|
'Cannot get property on null variable ' . $stmt_var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($stmt_var_type->isEmpty()) {
|
|
if (IssueBuffer::accepts(
|
|
new NullReference(
|
|
'Cannot fetch property on empty var ' . $stmt_var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($stmt_var_type->isMixed()) {
|
|
if (IssueBuffer::accepts(
|
|
new MixedPropertyFetch(
|
|
'Cannot fetch property on mixed var ' . $stmt_var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($stmt_var_type->isNullable()) {
|
|
if (IssueBuffer::accepts(
|
|
new NullPropertyFetch(
|
|
'Cannot get property on possibly null variable ' . $stmt_var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
$stmt->inferredType = Type::getNull();
|
|
}
|
|
|
|
if (!is_string($stmt->name)) {
|
|
return;
|
|
}
|
|
|
|
foreach ($stmt_var_type->types as $lhs_type_part) {
|
|
if ($lhs_type_part->isNull()) {
|
|
continue;
|
|
}
|
|
|
|
if (!$lhs_type_part->isObjectType()) {
|
|
$stmt_var_id = self::getVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if (IssueBuffer::accepts(
|
|
new InvalidPropertyFetch(
|
|
'Cannot fetch property on non-object ' . $stmt_var_id . ' of type ' . $lhs_type_part,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
// stdClass and SimpleXMLElement are special cases where we cannot infer the return types
|
|
// but we don't want to throw an error
|
|
// Hack has a similar issue: https://github.com/facebook/hhvm/issues/5164
|
|
if ($lhs_type_part->isObject() || in_array(strtolower($lhs_type_part->value), ['stdclass', 'simplexmlelement', 'dateinterval', 'domdocument', 'domnode'])) {
|
|
$stmt->inferredType = Type::getMixed();
|
|
continue;
|
|
}
|
|
|
|
if (method_exists((string) $lhs_type_part, '__get')) {
|
|
$stmt->inferredType = Type::getMixed();
|
|
continue;
|
|
}
|
|
|
|
if (!ClassChecker::classExists($lhs_type_part->value)) {
|
|
if (InterfaceChecker::interfaceExists($lhs_type_part->value)) {
|
|
if (IssueBuffer::accepts(
|
|
new NoInterfaceProperties(
|
|
'Interfaces cannot have properties',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedClass(
|
|
'Cannot get properties of undefined class ' . $lhs_type_part->value,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if ($var_name === 'this'
|
|
|| $lhs_type_part->value === $context->self
|
|
|| ($this->source->getSource() instanceof TraitChecker && $lhs_type_part->value === $this->source->getAbsoluteClass())
|
|
) {
|
|
$class_visibility = \ReflectionProperty::IS_PRIVATE;
|
|
}
|
|
elseif (ClassChecker::classExtends($lhs_type_part->value, $context->self)) {
|
|
$class_visibility = \ReflectionProperty::IS_PROTECTED;
|
|
}
|
|
else {
|
|
$class_visibility = \ReflectionProperty::IS_PUBLIC;
|
|
}
|
|
|
|
$class_properties = ClassLikeChecker::getInstancePropertiesForClass(
|
|
$lhs_type_part->value,
|
|
$class_visibility
|
|
);
|
|
|
|
if (!$class_properties || !isset($class_properties[$stmt->name])) {
|
|
if ($stmt_var_id === '$this') {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedThisPropertyFetch(
|
|
'Instance property ' . $lhs_type_part->value .'::$' . $stmt->name . ' is not defined',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedPropertyFetch(
|
|
'Instance property ' . $lhs_type_part->value .'::$' . $stmt->name . ' is not defined',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($var_id) {
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
}
|
|
|
|
$stmt->inferredType = Type::getMixed();
|
|
|
|
return;
|
|
}
|
|
|
|
if (isset($stmt->inferredType)) {
|
|
$stmt->inferredType = Type::combineUnionTypes(clone $class_properties[$stmt->name], $stmt->inferredType);
|
|
}
|
|
else {
|
|
$stmt->inferredType = $class_properties[$stmt->name];
|
|
}
|
|
}
|
|
|
|
if ($var_id) {
|
|
$context->vars_in_scope[$var_id] = isset($stmt->inferredType) ? $stmt->inferredType : Type::getMixed();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr\PropertyFetch|PhpParser\Node\Stmt\PropertyProperty $stmt
|
|
* @param string $prop_name
|
|
* @param Type\Union $assignment_type
|
|
* @param Context $context
|
|
* @return false|null
|
|
*/
|
|
protected function checkPropertyAssignment($stmt, $prop_name, Type\Union $assignment_type, Context $context)
|
|
{
|
|
$class_property_types = [];
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\PropertyProperty) {
|
|
if (!$context->self) {
|
|
return;
|
|
}
|
|
|
|
$class_properties = ClassLikeChecker::getInstancePropertiesForClass($context->self, \ReflectionProperty::IS_PRIVATE);
|
|
|
|
$class_property_types[] = clone $class_properties[$prop_name];
|
|
|
|
$var_id = '$this->' . $prop_name;
|
|
}
|
|
elseif ($stmt->var instanceof PhpParser\Node\Expr\Variable) {
|
|
if (!isset($context->vars_in_scope['$' . $stmt->var->name])) {
|
|
if ($this->checkVariable($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
$stmt->var->inferredType = $context->vars_in_scope['$' . $stmt->var->name];
|
|
|
|
$lhs_type = $context->vars_in_scope['$' . $stmt->var->name];
|
|
|
|
if ($stmt->var->name === 'this' && !$this->source->getClassLikeChecker()) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidScope('Cannot use $this when not inside class', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$var_id = self::getVarId($stmt, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($lhs_type->isMixed()) {
|
|
if (IssueBuffer::accepts(
|
|
new MixedPropertyAssignment(
|
|
$var_id . ' with mixed type cannot be assigned to',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($lhs_type->isNull()) {
|
|
if (IssueBuffer::accepts(
|
|
new NullPropertyAssignment(
|
|
$var_id . ' with null type cannot be assigned to',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($lhs_type->isNullable()) {
|
|
if (IssueBuffer::accepts(
|
|
new NullPropertyAssignment(
|
|
$var_id . ' with possibly null type \'' . $lhs_type . '\' cannot be assigned to',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$has_regular_setter = false;
|
|
|
|
foreach ($lhs_type->types as $lhs_type_part) {
|
|
if ($lhs_type_part->isNull()) {
|
|
continue;
|
|
}
|
|
|
|
if (method_exists((string) $lhs_type_part, '__set')) {
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
continue;
|
|
}
|
|
|
|
$has_regular_setter = true;
|
|
|
|
if (!$lhs_type_part->isObjectType()) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidPropertyAssignment(
|
|
$var_id . ' with possible non-object type \'' . $lhs_type_part . '\' cannot be assigned to',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if ($lhs_type_part->isObject()) {
|
|
continue;
|
|
}
|
|
|
|
// stdClass and SimpleXMLElement are special cases where we cannot infer the return types
|
|
// but we don't want to throw an error
|
|
// Hack has a similar issue: https://github.com/facebook/hhvm/issues/5164
|
|
if ($lhs_type_part->isObject() || in_array(strtolower($lhs_type_part->value), ['stdclass', 'simplexmlelement', 'dateinterval', 'domdocument', 'domnode'])) {
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
return;
|
|
}
|
|
|
|
if (self::isMock($lhs_type_part->value)) {
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
return;
|
|
}
|
|
|
|
if ($stmt->var->name === 'this' || $lhs_type_part->value === $context->self) {
|
|
$class_visibility = \ReflectionProperty::IS_PRIVATE;
|
|
}
|
|
elseif (ClassChecker::classExtends($lhs_type_part->value, $context->self)) {
|
|
$class_visibility = \ReflectionProperty::IS_PROTECTED;
|
|
}
|
|
else {
|
|
$class_visibility = \ReflectionProperty::IS_PUBLIC;
|
|
}
|
|
|
|
if (!ClassChecker::classExists($lhs_type_part->value)) {
|
|
if (InterfaceChecker::interfaceExists($lhs_type_part->value)) {
|
|
if (IssueBuffer::accepts(
|
|
new NoInterfaceProperties(
|
|
'Interfaces cannot have properties',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedClass(
|
|
'Cannot set properties of undefined class ' . $lhs_type_part->value,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
$class_properties = ClassLikeChecker::getInstancePropertiesForClass(
|
|
$lhs_type_part->value,
|
|
$class_visibility
|
|
);
|
|
|
|
if (!isset($class_properties[$prop_name])) {
|
|
if ($stmt->var->name === 'this') {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedThisPropertyAssignment(
|
|
'Instance property ' . $lhs_type_part->value . '::$' . $prop_name . ' is not defined',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedPropertyAssignment(
|
|
'Instance property ' . $lhs_type_part->value . '::$' . $prop_name . ' is not defined',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
$class_property_types[] = clone $class_properties[$prop_name];
|
|
}
|
|
|
|
if (!$has_regular_setter) {
|
|
return;
|
|
}
|
|
|
|
// because we don't want to be assigning for property declarations
|
|
$context->vars_in_scope[$var_id] = $assignment_type;
|
|
}
|
|
else {
|
|
return;
|
|
}
|
|
|
|
if ($var_id && count($class_property_types) === 1 && isset($class_property_types[0]->types['stdClass'])) {
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
return;
|
|
}
|
|
|
|
if (!$class_property_types) {
|
|
if (IssueBuffer::accepts(
|
|
new MissingPropertyDeclaration(
|
|
'Missing property declaration for ' . $var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($assignment_type->isMixed()) {
|
|
return;
|
|
}
|
|
|
|
foreach ($class_property_types as $class_property_type) {
|
|
if ($class_property_type->isMixed()) {
|
|
continue;
|
|
}
|
|
|
|
if (!$assignment_type->isIn($class_property_type)) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidPropertyAssignment(
|
|
$var_id . ' with declared type \'' . $class_property_type . '\' cannot be assigned type \'' . $assignment_type . '\'',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr\StaticPropertyFetch $stmt
|
|
* @param Type\Union $assignment_type
|
|
* @param Context $context
|
|
* @return false|null
|
|
*/
|
|
protected function checkStaticPropertyAssignment(PhpParser\Node\Expr\StaticPropertyFetch $stmt, Type\Union $assignment_type, Context $context)
|
|
{
|
|
$class_property_types = [];
|
|
|
|
if ($this->checkStaticPropertyFetch($stmt, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$var_id = self::getVarId($stmt, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
$absolute_class = (string)$stmt->class->inferredType;
|
|
|
|
if ($stmt->class->parts[0] === 'this' || $absolute_class === $context->self) {
|
|
$class_visibility = \ReflectionProperty::IS_PRIVATE;
|
|
}
|
|
elseif ($context->self && ClassChecker::classExtends($absolute_class, $context->self)) {
|
|
$class_visibility = \ReflectionProperty::IS_PROTECTED;
|
|
}
|
|
else {
|
|
$class_visibility = \ReflectionProperty::IS_PUBLIC;
|
|
}
|
|
|
|
$class_properties = ClassLikeChecker::getStaticPropertiesForClass(
|
|
$absolute_class,
|
|
$class_visibility
|
|
);
|
|
|
|
$prop_name = $stmt->name;
|
|
|
|
if (!isset($class_properties[$prop_name])) {
|
|
if ($stmt->class->parts[0] === 'this') {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedThisPropertyAssignment(
|
|
'Static property ' . $var_id . ' is not defined',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedPropertyAssignment(
|
|
'Static property ' . $var_id . ' is not defined',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
$context->vars_in_scope[$var_id] = $assignment_type;
|
|
|
|
$class_property_type = clone $class_properties[$prop_name];
|
|
|
|
if ($assignment_type->isMixed()) {
|
|
return;
|
|
}
|
|
|
|
if ($class_property_type->isMixed()) {
|
|
return;
|
|
}
|
|
|
|
if (!$assignment_type->isIn($class_property_type)) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidPropertyAssignment(
|
|
$var_id . ' with declared type \'' . $class_property_type . '\' cannot be assigned type \'' . $assignment_type . '\'',
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$context->vars_in_scope[$var_id] = $assignment_type;
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkNew(PhpParser\Node\Expr\New_ $stmt, Context $context)
|
|
{
|
|
$absolute_class = null;
|
|
|
|
if ($stmt->class instanceof PhpParser\Node\Name) {
|
|
if (!in_array($stmt->class->parts[0], ['self', 'static', 'parent'])) {
|
|
if ($context->check_classes) {
|
|
$absolute_class = ClassLikeChecker::getAbsoluteClassFromName($stmt->class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($this->isPhantomClass($absolute_class)) {
|
|
return;
|
|
}
|
|
|
|
if (ClassLikeChecker::checkAbsoluteClassOrInterface($absolute_class, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
switch ($stmt->class->parts[0]) {
|
|
case 'self':
|
|
$absolute_class = $context->self;
|
|
break;
|
|
|
|
case 'parent':
|
|
$absolute_class = $context->parent;
|
|
break;
|
|
|
|
case 'static':
|
|
// @todo maybe we can do better here
|
|
$absolute_class = $context->self;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($absolute_class) {
|
|
$stmt->inferredType = new Type\Union([new Type\Atomic($absolute_class)]);
|
|
|
|
if (method_exists($absolute_class, '__construct')) {
|
|
$method_id = $absolute_class . '::__construct';
|
|
|
|
if ($this->checkFunctionArguments($stmt->args, $method_id, $context, $stmt->getLine()) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkArray(PhpParser\Node\Expr\Array_ $stmt, Context $context)
|
|
{
|
|
// if the array is empty, this special type allows us to match any other array type against it
|
|
if (empty($stmt->items)) {
|
|
$stmt->inferredType = Type::getEmptyArray();
|
|
return;
|
|
}
|
|
|
|
/** @var Type\Union|null */
|
|
$item_key_type = null;
|
|
|
|
/** @var Type\Union|null */
|
|
$item_value_type = null;
|
|
|
|
/** @var array<string,Type\Union> */
|
|
$property_types = [];
|
|
|
|
foreach ($stmt->items as $item) {
|
|
if ($item->key) {
|
|
if ($this->checkExpression($item->key, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (isset($item->key->inferredType)) {
|
|
if ($item_key_type) {
|
|
/** @var Type\Union */
|
|
$item_key_type = Type::combineUnionTypes($item->key->inferredType, $item_key_type);
|
|
}
|
|
else {
|
|
/** @var Type\Union */
|
|
$item_key_type = $item->key->inferredType;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
$item_key_type = Type::getInt();
|
|
}
|
|
|
|
if ($this->checkExpression($item->value, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (isset($item->value->inferredType)) {
|
|
if ($item->key instanceof PhpParser\Node\Scalar\String_) {
|
|
$property_types[$item->key->value] = $item->value->inferredType;
|
|
}
|
|
|
|
if ($item_value_type) {
|
|
$item_value_type = Type::combineUnionTypes($item->value->inferredType, $item_value_type);
|
|
}
|
|
else {
|
|
$item_value_type = $item->value->inferredType;
|
|
}
|
|
}
|
|
}
|
|
|
|
// if this array looks like an object-like array, let's return that instead
|
|
if ($item_value_type && $item_key_type && $item_key_type->hasString() && !$item_key_type->hasInt()) {
|
|
$stmt->inferredType = new Type\Union([new Type\ObjectLike('object-like', $property_types)]);
|
|
return;
|
|
}
|
|
|
|
$stmt->inferredType = new Type\Union([
|
|
new Type\Generic(
|
|
'array',
|
|
[
|
|
$item_key_type ?: new Type\Union([new Type\Atomic('int'), new Type\Atomic('string')]),
|
|
$item_value_type ?: Type::getMixed()
|
|
]
|
|
)
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkTryCatch(PhpParser\Node\Stmt\TryCatch $stmt, Context $context, Context $loop_context = null)
|
|
{
|
|
$this->check($stmt->stmts, $context, $loop_context);
|
|
|
|
// clone context for catches after running the try block, as
|
|
// we optimistically assume it only failed at the very end
|
|
$original_context = clone $context;
|
|
|
|
foreach ($stmt->catches as $catch) {
|
|
$catch_context = clone $original_context;
|
|
|
|
$catch_class = ClassLikeChecker::getAbsoluteClassFromName($catch->type, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($context->check_classes) {
|
|
$absolute_class = $catch_class;
|
|
|
|
if (ClassLikeChecker::checkAbsoluteClassOrInterface($absolute_class, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$catch_context->vars_in_scope['$' . $catch->var] = new Type\Union([
|
|
new Type\Atomic($catch_class)
|
|
]);
|
|
|
|
$catch_context->vars_possibly_in_scope['$' . $catch->var] = true;
|
|
|
|
$this->registerVariable('$' . $catch->var, $catch->getLine());
|
|
|
|
$this->check($catch->stmts, $catch_context, $loop_context);
|
|
|
|
if (!ScopeChecker::doesAlwaysReturnOrThrow($catch->stmts)) {
|
|
foreach ($catch_context->vars_in_scope as $catch_var => $type) {
|
|
if ($catch->var !== $catch_var && isset($context->vars_in_scope[$catch_var]) && (string) $context->vars_in_scope[$catch_var] !== (string) $type) {
|
|
$context->vars_in_scope[$catch_var] = Type::combineUnionTypes($context->vars_in_scope[$catch_var], $type);
|
|
}
|
|
}
|
|
|
|
$context->vars_possibly_in_scope = array_merge($catch_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
}
|
|
}
|
|
|
|
if ($stmt->finallyStmts) {
|
|
$this->check($stmt->finallyStmts, $context, $loop_context);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkFor(PhpParser\Node\Stmt\For_ $stmt, Context $context)
|
|
{
|
|
$for_context = clone $context;
|
|
$for_context->in_loop = true;
|
|
|
|
foreach ($stmt->init as $init) {
|
|
if ($this->checkExpression($init, $for_context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
foreach ($stmt->cond as $condition) {
|
|
if ($this->checkExpression($condition, $for_context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
foreach ($stmt->loop as $expr) {
|
|
if ($this->checkExpression($expr, $for_context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$this->check($stmt->stmts, $for_context, $context);
|
|
|
|
foreach ($context->vars_in_scope as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
continue;
|
|
}
|
|
|
|
if ($for_context->vars_in_scope[$var]->isMixed()) {
|
|
$context->vars_in_scope[$var] = $for_context->vars_in_scope[$var];
|
|
}
|
|
|
|
if ((string) $for_context->vars_in_scope[$var] !== (string) $type) {
|
|
$context->vars_in_scope[$var] = Type::combineUnionTypes($context->vars_in_scope[$var], $for_context->vars_in_scope[$var]);
|
|
}
|
|
}
|
|
|
|
$context->vars_possibly_in_scope = array_merge($for_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkForeach(PhpParser\Node\Stmt\Foreach_ $stmt, Context $context)
|
|
{
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$foreach_context = clone $context;
|
|
$foreach_context->in_loop = true;
|
|
|
|
/** @var Type\Union|null */
|
|
$key_type = null;
|
|
|
|
/** @var Type\Union|null */
|
|
$value_type = null;
|
|
|
|
$var_id = self::getVarId($stmt->expr, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if (isset($stmt->expr->inferredType)) {
|
|
/** @var Type\Union */
|
|
$iterator_type = $stmt->expr->inferredType;
|
|
}
|
|
elseif (isset($foreach_context->vars_in_scope[$var_id])) {
|
|
$iterator_type = $foreach_context->vars_in_scope[$var_id];
|
|
}
|
|
else {
|
|
$iterator_type = null;
|
|
}
|
|
|
|
if ($iterator_type) {
|
|
foreach ($iterator_type->types as $return_type) {
|
|
// if it's an empty array, we cannot iterate over it
|
|
if ((string) $return_type === 'array<empty,empty>') {
|
|
continue;
|
|
}
|
|
|
|
if ($return_type instanceof Type\Generic) {
|
|
$value_index = count($return_type->type_params) - 1;
|
|
$value_type_part = $return_type->type_params[$value_index];
|
|
|
|
if (!$value_type) {
|
|
$value_type = $value_type_part;
|
|
}
|
|
else {
|
|
$value_type = Type::combineUnionTypes($value_type, $value_type_part);
|
|
}
|
|
|
|
if ($value_index) {
|
|
$key_type_part = $return_type->type_params[0];
|
|
|
|
if (!$key_type) {
|
|
$key_type = $key_type_part;
|
|
}
|
|
else {
|
|
$key_type = Type::combineUnionTypes($key_type, $key_type_part);
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
|
|
switch ($return_type->value) {
|
|
case 'mixed':
|
|
case 'empty':
|
|
$value_type = Type::getMixed();
|
|
break;
|
|
|
|
case 'array':
|
|
case 'object':
|
|
case 'object-like':
|
|
$value_type = Type::getMixed();
|
|
break;
|
|
|
|
case 'null':
|
|
if (IssueBuffer::accepts(
|
|
new NullReference('Cannot iterate over ' . $return_type->value, $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
$value_type = Type::getMixed();
|
|
break;
|
|
|
|
case 'string':
|
|
case 'void':
|
|
case 'int':
|
|
case 'bool':
|
|
case 'false':
|
|
if (IssueBuffer::accepts(
|
|
new InvalidIterator('Cannot iterate over ' . $return_type->value, $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
$value_type = Type::getMixed();
|
|
break;
|
|
|
|
default:
|
|
if (ClassChecker::classImplements($return_type->value, 'Iterator')) {
|
|
$iterator_method = $return_type->value . '::current';
|
|
$iterator_class_type = MethodChecker::getMethodReturnTypes($iterator_method);
|
|
|
|
if ($iterator_class_type) {
|
|
$value_type_part = self::fleshOutTypes($iterator_class_type, [], $return_type->value, $iterator_method);
|
|
|
|
if (!$value_type) {
|
|
$value_type = $value_type_part;
|
|
}
|
|
else {
|
|
$value_type = Type::combineUnionTypes($value_type, $value_type_part);
|
|
}
|
|
}
|
|
else {
|
|
$value_type = Type::getMixed();
|
|
}
|
|
}
|
|
|
|
if ($return_type->value !== 'Traversable' && $return_type->value !== $this->class_name) {
|
|
if (ClassLikeChecker::checkAbsoluteClassOrInterface($return_type->value, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($stmt->keyVar) {
|
|
$foreach_context->vars_in_scope['$' . $stmt->keyVar->name] = $key_type ?: Type::getMixed();
|
|
$foreach_context->vars_possibly_in_scope['$' . $stmt->keyVar->name] = true;
|
|
$this->registerVariable('$' . $stmt->keyVar->name, $stmt->getLine());
|
|
}
|
|
|
|
if ($value_type && $value_type instanceof Type\Atomic) {
|
|
$value_type = new Type\Union([$value_type]);
|
|
}
|
|
|
|
$foreach_context->vars_in_scope['$' . $stmt->valueVar->name] = $value_type ? $value_type : Type::getMixed();
|
|
$foreach_context->vars_possibly_in_scope['$' . $stmt->valueVar->name] = true;
|
|
$this->registerVariable('$' . $stmt->valueVar->name, $stmt->getLine());
|
|
|
|
CommentChecker::getTypeFromComment((string) $stmt->getDocComment(), $foreach_context, $this->source, null);
|
|
|
|
$this->check($stmt->stmts, $foreach_context, $context);
|
|
|
|
foreach ($context->vars_in_scope as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
continue;
|
|
}
|
|
|
|
if (!isset($foreach_context->vars_in_scope[$var])) {
|
|
unset($context->vars_in_scope[$var]);
|
|
continue;
|
|
}
|
|
|
|
if ($foreach_context->vars_in_scope[$var]->isMixed()) {
|
|
$context->vars_in_scope[$var] = $foreach_context->vars_in_scope[$var];
|
|
}
|
|
|
|
if ((string) $foreach_context->vars_in_scope[$var] !== (string) $type) {
|
|
$context->vars_in_scope[$var] = Type::combineUnionTypes($context->vars_in_scope[$var], $foreach_context->vars_in_scope[$var]);
|
|
}
|
|
}
|
|
|
|
$context->vars_possibly_in_scope = array_merge($foreach_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkWhile(PhpParser\Node\Stmt\While_ $stmt, Context $context)
|
|
{
|
|
$while_context = clone $context;
|
|
|
|
if ($this->checkExpression($stmt->cond, $while_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$while_types = $this->type_checker->getTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes);
|
|
|
|
// if the while has an or as the main component, we cannot safely reason about it
|
|
if ($stmt->cond instanceof PhpParser\Node\Expr\BinaryOp && self::containsBooleanOr($stmt->cond)) {
|
|
// do nothing
|
|
}
|
|
else {
|
|
$while_vars_in_scope_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$while_types,
|
|
$while_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($while_vars_in_scope_reconciled === false) {
|
|
return false;
|
|
}
|
|
|
|
$while_context->vars_in_scope = $while_vars_in_scope_reconciled;
|
|
}
|
|
|
|
if ($this->check($stmt->stmts, $while_context, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
foreach ($context->vars_in_scope as $var => $type) {
|
|
if ($type->isMixed()) {
|
|
continue;
|
|
}
|
|
|
|
if (isset($while_context->vars_in_scope[$var])) {
|
|
if ($while_context->vars_in_scope[$var]->isMixed()) {
|
|
$context->vars_in_scope[$var] = $while_context->vars_in_scope[$var];
|
|
}
|
|
|
|
if ((string) $while_context->vars_in_scope[$var] !== (string) $type) {
|
|
$context->vars_in_scope[$var] = Type::combineUnionTypes($while_context->vars_in_scope[$var], $type);
|
|
}
|
|
}
|
|
}
|
|
|
|
$context->vars_possibly_in_scope = array_merge($context->vars_possibly_in_scope, $while_context->vars_possibly_in_scope);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkDo(PhpParser\Node\Stmt\Do_ $stmt, Context $context)
|
|
{
|
|
// do not clone context for do, because it executes in current scope always
|
|
if ($this->check($stmt->stmts, $context, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
return $this->checkExpression($stmt->cond, $context);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkBinaryOp(PhpParser\Node\Expr\BinaryOp $stmt, Context $context, $nesting = 0)
|
|
{
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Concat && $nesting > 20) {
|
|
// ignore deeply-nested string concatenation
|
|
}
|
|
else if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanAnd) {
|
|
$left_type_assertions = $this->type_checker->getReconcilableTypeAssertions(
|
|
$stmt->left,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
|
|
if ($this->checkExpression($stmt->left, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
// while in an and, we allow scope to boil over to support
|
|
// statements of the form if ($x && $x->foo())
|
|
$op_vars_in_scope = TypeChecker::reconcileKeyedTypes(
|
|
$left_type_assertions,
|
|
$context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($op_vars_in_scope === false) {
|
|
return false;
|
|
}
|
|
|
|
$op_context = clone $context;
|
|
$op_context->vars_in_scope = $op_vars_in_scope;
|
|
|
|
if ($this->checkExpression($stmt->right, $op_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
foreach ($op_context->vars_in_scope as $var => $type) {
|
|
if (!isset($context->vars_in_scope[$var])) {
|
|
$context->vars_in_scope[$var] = $type;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
$context->updateChecks($op_context);
|
|
|
|
$context->vars_possibly_in_scope = array_merge($op_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
}
|
|
else if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanOr) {
|
|
$left_type_assertions = $this->type_checker->getNegatableTypeAssertions(
|
|
$stmt->left,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
|
|
$negated_type_assertions = TypeChecker::negateTypes($left_type_assertions);
|
|
|
|
if ($this->checkExpression($stmt->left, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
// while in an or, we allow scope to boil over to support
|
|
// statements of the form if ($x === null || $x->foo())
|
|
$op_vars_in_scope = TypeChecker::reconcileKeyedTypes(
|
|
$negated_type_assertions,
|
|
$context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($op_vars_in_scope === false) {
|
|
return false;
|
|
}
|
|
|
|
$op_context = clone $context;
|
|
$op_context->vars_in_scope = $op_vars_in_scope;
|
|
|
|
if ($this->checkExpression($stmt->right, $op_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$context->updateChecks($op_context);
|
|
|
|
$context->vars_possibly_in_scope = array_merge($op_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
}
|
|
else {
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Concat) {
|
|
$stmt->inferredType = Type::getString();
|
|
}
|
|
|
|
if ($stmt->left instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
if ($this->checkBinaryOp($stmt->left, $context, ++$nesting) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if ($this->checkExpression($stmt->left, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($stmt->right instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
if ($this->checkBinaryOp($stmt->right, $context, ++$nesting) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if ($this->checkExpression($stmt->right, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
// let's do some fun type assignment
|
|
if (isset($stmt->left->inferredType) && isset($stmt->right->inferredType)) {
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Mul
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Minus
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Plus
|
|
) {
|
|
if ($stmt->left->inferredType->isInt() && $stmt->right->inferredType->isInt()) {
|
|
$stmt->inferredType = Type::getInt();
|
|
}
|
|
elseif ($stmt->left->inferredType->hasNumericType() && $stmt->right->inferredType->hasNumericType()) {
|
|
$stmt->inferredType = Type::getFloat();
|
|
}
|
|
}
|
|
elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Div
|
|
&& $stmt->left->inferredType->hasNumericType()
|
|
&& $stmt->right->inferredType->hasNumericType()
|
|
) {
|
|
$stmt->inferredType = Type::getFloat();
|
|
}
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanAnd
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanOr
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Equal
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\NotEqual
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Identical
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\NotIdentical
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Greater
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\GreaterOrEqual
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Smaller
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\SmallerOrEqual
|
|
) {
|
|
$stmt->inferredType = Type::getBool();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkAssignment(PhpParser\Node\Expr\Assign $stmt, Context $context)
|
|
{
|
|
$var_id = self::getVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
$array_var_id = self::getArrayVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($array_var_id) {
|
|
// removes dependennt vars from $context
|
|
$context->removeDescendents($array_var_id);
|
|
}
|
|
|
|
$type_in_comments = CommentChecker::getTypeFromComment((string) $stmt->getDocComment(), $context, $this->source, $var_id);
|
|
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
// if we're not exiting immediately, make everything mixed
|
|
$context->vars_in_scope[$var_id] = $type_in_comments ?: Type::getMixed();
|
|
$stmt->inferredType = $type_in_comments ?: Type::getMixed();
|
|
|
|
return false;
|
|
}
|
|
|
|
if ($type_in_comments) {
|
|
$return_type = $type_in_comments;
|
|
}
|
|
elseif (isset($stmt->expr->inferredType)) {
|
|
/** @var Type\Union */
|
|
$return_type = $stmt->expr->inferredType;
|
|
}
|
|
else {
|
|
$return_type = Type::getMixed();
|
|
}
|
|
|
|
$stmt->inferredType = $return_type;
|
|
|
|
if ($stmt->var instanceof PhpParser\Node\Expr\Variable && is_string($stmt->var->name) && $var_id) {
|
|
$context->vars_in_scope[$var_id] = $return_type;
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
$this->registerVariable($var_id, $stmt->var->getLine());
|
|
|
|
}
|
|
elseif ($stmt->var instanceof PhpParser\Node\Expr\List_) {
|
|
foreach ($stmt->var->vars as $var) {
|
|
if ($var) {
|
|
$context->vars_in_scope['$' . $var->name] = Type::getMixed();
|
|
$context->vars_possibly_in_scope['$' . $var->name] = true;
|
|
$this->registerVariable('$' . $var->name, $var->getLine());
|
|
}
|
|
}
|
|
|
|
}
|
|
else if ($stmt->var instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
|
if ($this->checkArrayAssignment($stmt->var, $context, $return_type) === false) {
|
|
return false;
|
|
}
|
|
|
|
}
|
|
else if ($stmt->var instanceof PhpParser\Node\Expr\PropertyFetch &&
|
|
$stmt->var->var instanceof PhpParser\Node\Expr\Variable &&
|
|
is_string($stmt->var->name)) {
|
|
|
|
$this->checkPropertyAssignment($stmt->var, $stmt->var->name, $return_type, $context);
|
|
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
}
|
|
else if ($stmt->var instanceof PhpParser\Node\Expr\StaticPropertyFetch &&
|
|
$stmt->var->class instanceof PhpParser\Node\Name &&
|
|
is_string($stmt->var->name)) {
|
|
|
|
$this->checkStaticPropertyAssignment($stmt->var, $return_type, $context);
|
|
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
}
|
|
|
|
if ($var_id && isset($context->vars_in_scope[$var_id]) && $context->vars_in_scope[$var_id]->isVoid()) {
|
|
if (IssueBuffer::accepts(
|
|
new FailedTypeResolution('Cannot assign ' . $var_id . ' to type void', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr $stmt
|
|
* @param string $this_class_name
|
|
* @param string $namespace
|
|
* @param array $aliased_classes
|
|
* @param int|null &$nesting
|
|
* @return string|null
|
|
*/
|
|
public static function getVarId(PhpParser\Node\Expr $stmt, $this_class_name, $namespace, array $aliased_classes, &$nesting = null)
|
|
{
|
|
if ($stmt instanceof PhpParser\Node\Expr\Variable && is_string($stmt->name)) {
|
|
return '$' . $stmt->name;
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\StaticPropertyFetch
|
|
&& is_string($stmt->name)
|
|
&& $stmt->class instanceof PhpParser\Node\Name
|
|
) {
|
|
if (count($stmt->class->parts) === 1 && in_array($stmt->class->parts[0], ['self', 'static', 'parent'])) {
|
|
$absolute_class = $this_class_name;
|
|
}
|
|
else {
|
|
$absolute_class = ClassLikeChecker::getAbsoluteClassFromName($stmt->class, $namespace, $aliased_classes);
|
|
}
|
|
|
|
return $absolute_class . '::$' . $stmt->name;
|
|
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\PropertyFetch && is_string($stmt->name)) {
|
|
$object_id = self::getVarId($stmt->var, $this_class_name, $namespace, $aliased_classes);
|
|
|
|
if (!$object_id) {
|
|
return null;
|
|
}
|
|
|
|
return $object_id . '->' . $stmt->name;
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch && $nesting !== null) {
|
|
$nesting++;
|
|
return self::getVarId($stmt->var, $this_class_name, $namespace, $aliased_classes, $nesting);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr $stmt
|
|
* @param string $this_class_name
|
|
* @param string $namespace
|
|
* @param array $aliased_classes
|
|
* @return string|null
|
|
*/
|
|
public static function getArrayVarId(PhpParser\Node\Expr $stmt, $this_class_name, $namespace, array $aliased_classes)
|
|
{
|
|
if ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch && $stmt->dim instanceof PhpParser\Node\Scalar\String_) {
|
|
$root_var_id = self::getArrayVarId($stmt->var, $this_class_name, $namespace, $aliased_classes);
|
|
return $root_var_id ? $root_var_id . '[\'' . $stmt->dim->value . '\']' : null;
|
|
}
|
|
|
|
return self::getVarId($stmt, $this_class_name, $namespace, $aliased_classes);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
* @psalm-suppress MixedMethodCall - some funky logic here
|
|
*/
|
|
protected function checkArrayAssignment(PhpParser\Node\Expr\ArrayDimFetch $stmt, Context $context, Type\Union $assignment_value_type)
|
|
{
|
|
if ($stmt->dim && $this->checkExpression($stmt->dim, $context, false) === false) {
|
|
return false;
|
|
}
|
|
|
|
$assignment_key_type = null;
|
|
$assignment_key_value = null;
|
|
|
|
if ($stmt->dim) {
|
|
if (isset($stmt->dim->inferredType)) {
|
|
/** @var Type\Union */
|
|
$assignment_key_type = $stmt->dim->inferredType;
|
|
|
|
if ($stmt->dim instanceof PhpParser\Node\Scalar\String_) {
|
|
$assignment_key_value = $stmt->dim->value;
|
|
}
|
|
}
|
|
else {
|
|
$assignment_key_type = Type::getMixed();
|
|
}
|
|
}
|
|
else {
|
|
$assignment_key_type = Type::getInt();
|
|
}
|
|
|
|
$nesting = 0;
|
|
$var_id = self::getVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes, $nesting);
|
|
$is_object = $var_id && isset($context->vars_in_scope[$var_id]) && $context->vars_in_scope[$var_id]->hasObjectType();
|
|
$is_string = $var_id && isset($context->vars_in_scope[$var_id]) && $context->vars_in_scope[$var_id]->hasString();
|
|
|
|
if ($this->checkExpression($stmt->var, $context, !$is_object, $assignment_key_type, $assignment_value_type, $assignment_key_value) === false) {
|
|
return false;
|
|
}
|
|
|
|
$array_var_id = self::getArrayVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
$keyed_array_var_id = $array_var_id && $stmt->dim instanceof PhpParser\Node\Scalar\String_
|
|
? $array_var_id . '[\'' . $stmt->dim->value . '\']'
|
|
: null;
|
|
|
|
if (isset($stmt->var->inferredType)) {
|
|
$return_type = $stmt->var->inferredType;
|
|
|
|
if ($is_object) {
|
|
// do nothing
|
|
}
|
|
elseif ($is_string) {
|
|
foreach ($assignment_value_type->types as $value_type) {
|
|
if (!$value_type->isString()) {
|
|
if ($value_type->isMixed()) {
|
|
if (IssueBuffer::accepts(
|
|
new MixedStringOffsetAssignment(
|
|
'Cannot assign a mixed variable to a string offset for ' . $var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if (IssueBuffer::accepts(
|
|
new InvalidArrayAssignment(
|
|
'Cannot assign string offset for ' . $var_id . ' of type ' . $value_type,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
// we want to support multiple array types:
|
|
// - Dictionaries (which have the type array<string,T>)
|
|
// - pseudo-objects (which have the type array<string,mixed>)
|
|
// - typed arrays (which have the type array<int,T>)
|
|
// and completely freeform arrays
|
|
//
|
|
// When making assignments, we generally only know the shape of the array
|
|
// as it is being created.
|
|
if ($keyed_array_var_id) {
|
|
// when we have a pattern like
|
|
// $a = [];
|
|
// $a['b']['c']['d'] = 1;
|
|
// $a['c'] = 2;
|
|
// we need to create each type in turn
|
|
// so we get
|
|
// typeof $a['b']['c']['d'] => int
|
|
// typeof $a['b']['c'] => object-like{d:int}
|
|
// typeof $a['b'] => object-like{c:object-like{d:int}}
|
|
// typeof $a['c'] => int
|
|
// typeof $a => object-like{b:object-like{c:object-like{d:int}},c:int}
|
|
|
|
$context->vars_in_scope[$keyed_array_var_id] = $assignment_value_type;
|
|
|
|
$stmt->inferredType = $assignment_value_type;
|
|
}
|
|
|
|
if (!$nesting) {
|
|
if ($assignment_key_type->hasString()
|
|
&& $assignment_key_value
|
|
&& (!isset($context->vars_in_scope[$var_id])
|
|
|| $context->vars_in_scope[$var_id]->hasObjectLike()
|
|
|| ($context->vars_in_scope[$var_id]->hasArray()
|
|
&& $context->vars_in_scope[$var_id]->types['array']->type_params[0]->isEmpty()))
|
|
) {
|
|
$assignment_type = new Type\Union([
|
|
new Type\ObjectLike(
|
|
'object-like',
|
|
[
|
|
$assignment_key_value => $assignment_value_type
|
|
]
|
|
)
|
|
]);
|
|
}
|
|
else {
|
|
$assignment_type = new Type\Union([
|
|
new Type\Generic(
|
|
'array',
|
|
[
|
|
$assignment_key_type,
|
|
$assignment_value_type
|
|
]
|
|
)
|
|
]);
|
|
}
|
|
|
|
if (isset($context->vars_in_scope[$var_id])) {
|
|
$context->vars_in_scope[$var_id] = Type::combineUnionTypes(
|
|
$context->vars_in_scope[$var_id],
|
|
$assignment_type
|
|
);
|
|
}
|
|
else {
|
|
$context->vars_in_scope[$var_id] = $assignment_type;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
else {
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param Type\Atomic $type
|
|
* @param string|null $var_id
|
|
* @param int $line_number
|
|
* @return Type\Atomic|null|false
|
|
*/
|
|
protected function refineArrayType(Type\Atomic $type, Type\Union $assignment_key_type, Type\Union $assignment_value_type, $var_id, $line_number)
|
|
{
|
|
if ($type->value === 'null') {
|
|
if (IssueBuffer::accepts(
|
|
new NullReference(
|
|
'Cannot assign value on possibly null array ' . $var_id,
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return $type;
|
|
}
|
|
|
|
if ($type->value === 'string' && $assignment_value_type->hasString() && !$assignment_key_type->hasString()) {
|
|
return;
|
|
}
|
|
|
|
if (!$type->isArray() && !$type->isObjectLike() && !ClassChecker::classImplements($type->value, 'ArrayAccess')) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidArrayAssignment(
|
|
'Cannot assign value on variable ' . $var_id . ' of type ' . $type->value . ' that does not implement ArrayAccess',
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return $type;
|
|
}
|
|
|
|
if ($type instanceof Type\Generic) {
|
|
if ($type->isArray()) {
|
|
if ($type->type_params[1]->isEmpty()) {
|
|
$type->type_params[0] = $assignment_key_type;
|
|
$type->type_params[1] = $assignment_value_type;
|
|
return $type;
|
|
}
|
|
|
|
if ((string) $type->type_params[0] !== (string) $assignment_key_type) {
|
|
$type->type_params[0] = Type::combineUnionTypes($type->type_params[0], $assignment_key_type);
|
|
}
|
|
|
|
if ((string) $type->type_params[1] !== (string) $assignment_value_type) {
|
|
$type->type_params[1] = Type::combineUnionTypes($type->type_params[1], $assignment_value_type);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $type;
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkAssignmentOperation(PhpParser\Node\Expr\AssignOp $stmt, Context $context)
|
|
{
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
return $this->checkExpression($stmt->expr, $context);
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkMethodCall(PhpParser\Node\Expr\MethodCall $stmt, Context $context)
|
|
{
|
|
if ($this->checkExpression($stmt->var, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$class_type = null;
|
|
$method_id = null;
|
|
|
|
if ($stmt->var instanceof PhpParser\Node\Expr\Variable) {
|
|
if (is_string($stmt->var->name) && $stmt->var->name === 'this' && !$this->class_name) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidScope('Use of $this in non-class context', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
$var_id = self::getVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
$class_type = isset($context->vars_in_scope[$var_id]) ? $context->vars_in_scope[$var_id] : null;
|
|
|
|
if (isset($stmt->var->inferredType)) {
|
|
/** @var Type\Union */
|
|
$class_type = $stmt->var->inferredType;
|
|
}
|
|
elseif (!$class_type) {
|
|
$stmt->inferredType = Type::getMixed();
|
|
}
|
|
|
|
if ($stmt->var instanceof PhpParser\Node\Expr\Variable
|
|
&& $stmt->var->name === 'this'
|
|
&& is_string($stmt->name)
|
|
&& $this->source instanceof FunctionLikeChecker
|
|
) {
|
|
$this_method_id = $this->source->getMethodId();
|
|
|
|
if (!isset(self::$this_calls[$this_method_id])) {
|
|
self::$this_calls[$this_method_id] = [];
|
|
}
|
|
|
|
self::$this_calls[$this_method_id][] = $stmt->name;
|
|
|
|
if (($this_class = ClassLikeChecker::getThisClass()) &&
|
|
(
|
|
$this_class === $this->absolute_class ||
|
|
ClassChecker::classExtends($this_class, $this->absolute_class) ||
|
|
trait_exists($this->absolute_class)
|
|
)) {
|
|
|
|
$method_id = $this->absolute_class . '::' . strtolower($stmt->name);
|
|
|
|
if ($this->checkInsideMethod($method_id, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!$context->check_methods || !$context->check_classes) {
|
|
return;
|
|
}
|
|
|
|
$has_mock = false;
|
|
|
|
if ($class_type && is_string($stmt->name)) {
|
|
$return_type = null;
|
|
|
|
foreach ($class_type->types as $type) {
|
|
$absolute_class = $type->value;
|
|
|
|
$is_mock = self::isMock($absolute_class);
|
|
|
|
$has_mock = $has_mock || $is_mock;
|
|
|
|
switch ($absolute_class) {
|
|
case 'null':
|
|
if (IssueBuffer::accepts(
|
|
new NullReference(
|
|
'Cannot call method ' . $stmt->name . ' on possibly null variable ' . $var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
break;
|
|
|
|
case 'int':
|
|
case 'bool':
|
|
case 'false':
|
|
case 'array':
|
|
case 'string':
|
|
if (IssueBuffer::accepts(
|
|
new InvalidArgument(
|
|
'Cannot call method ' . $stmt->name . ' on ' . $class_type . ' variable ' . $var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
break;
|
|
|
|
case 'mixed':
|
|
case 'object':
|
|
if (IssueBuffer::accepts(
|
|
new MixedMethodCall(
|
|
'Cannot call method ' . $stmt->name . ' on a mixed variable ' . $var_id,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
break;
|
|
|
|
case 'static':
|
|
$absolute_class = (string) $context->self;
|
|
// fall through to default
|
|
|
|
default:
|
|
if (method_exists($absolute_class, '__call') || $is_mock || $this->isPhantomClass($absolute_class)) {
|
|
$return_type = Type::getMixed();
|
|
continue;
|
|
}
|
|
|
|
$does_class_exist = ClassLikeChecker::checkAbsoluteClassOrInterface(
|
|
$absolute_class,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if (!$does_class_exist) {
|
|
return $does_class_exist;
|
|
}
|
|
|
|
$method_id = $absolute_class . '::' . strtolower($stmt->name);
|
|
$cased_method_id = $absolute_class . '::' . $stmt->name;
|
|
|
|
if (!isset(self::$method_call_index[$method_id])) {
|
|
self::$method_call_index[$method_id] = [];
|
|
}
|
|
|
|
if ($this->source instanceof MethodChecker) {
|
|
self::$method_call_index[$method_id][] = $this->source->getMethodId();
|
|
}
|
|
else {
|
|
self::$method_call_index[$method_id][] = $this->source->getFileName();
|
|
}
|
|
|
|
$does_method_exist = MethodChecker::checkMethodExists($cased_method_id, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues);
|
|
|
|
if (!$does_method_exist) {
|
|
return $does_method_exist;
|
|
}
|
|
|
|
/**
|
|
if (ClassLikeChecker::getThisClass() && ClassChecker::classExtends(ClassLikeChecker::getThisClass(), $this->absolute_class)) {
|
|
$calling_context = $context->self;
|
|
}
|
|
**/
|
|
|
|
if (MethodChecker::checkMethodVisibility($method_id, $context->self, $this->source, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (MethodChecker::checkMethodNotDeprecated($method_id, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
|
|
$return_type_candidate = MethodChecker::getMethodReturnTypes($method_id);
|
|
|
|
if ($return_type_candidate) {
|
|
$return_type_candidate = self::fleshOutTypes($return_type_candidate, $stmt->args, $absolute_class, $method_id);
|
|
|
|
if (!$return_type) {
|
|
$return_type = $return_type_candidate;
|
|
}
|
|
else {
|
|
$return_type = Type::combineUnionTypes($return_type_candidate, $return_type);
|
|
}
|
|
}
|
|
else {
|
|
$return_type = Type::getMixed();
|
|
}
|
|
}
|
|
}
|
|
|
|
$stmt->inferredType = $return_type;
|
|
}
|
|
|
|
if ($this->checkFunctionArguments($stmt->args, $method_id, $context, $stmt->getLine(), $has_mock) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string $method_id
|
|
* @param Context $context
|
|
* @return void
|
|
*/
|
|
protected function checkInsideMethod($method_id, Context $context)
|
|
{
|
|
$method_checker = ClassLikeChecker::getMethodChecker($method_id);
|
|
|
|
if ($method_checker && $this->source instanceof FunctionLikeChecker && $method_checker->getMethodId() !== $this->source->getMethodId()) {
|
|
$this_context = new Context($this->file_name, (string) $context->vars_in_scope['$this']);
|
|
|
|
foreach ($context->vars_possibly_in_scope as $var => $type) {
|
|
if (strpos($var, '$this->') === 0) {
|
|
$this_context->vars_possibly_in_scope[$var] = true;
|
|
}
|
|
}
|
|
|
|
foreach ($context->vars_in_scope as $var => $type) {
|
|
if (strpos($var, '$this->') === 0) {
|
|
$this_context->vars_in_scope[$var] = $type;
|
|
}
|
|
}
|
|
|
|
$this_context->vars_in_scope['$this'] = $context->vars_in_scope['$this'];
|
|
|
|
$method_checker->check($this_context);
|
|
|
|
foreach ($this_context->vars_in_scope as $var => $type) {
|
|
$context->vars_possibly_in_scope[$var] = true;
|
|
}
|
|
|
|
foreach ($this_context->vars_in_scope as $var => $type) {
|
|
$context->vars_in_scope[$var] = $type;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkClosureUses(PhpParser\Node\Expr\Closure $stmt, Context $context)
|
|
{
|
|
foreach ($stmt->uses as $use) {
|
|
if (!isset($context->vars_in_scope['$' . $use->var])) {
|
|
if ($use->byRef) {
|
|
$context->vars_in_scope['$' . $use->var] = Type::getMixed();
|
|
$context->vars_possibly_in_scope['$' . $use->var] = true;
|
|
$this->registerVariable('$' . $use->var, $use->getLine());
|
|
return;
|
|
}
|
|
|
|
if (!isset($context->vars_possibly_in_scope['$' . $use->var])) {
|
|
if ($context->check_variables) {
|
|
IssueBuffer::add(
|
|
new UndefinedVariable('Cannot find referenced variable $' . $use->var, $this->checked_file_name, $use->getLine())
|
|
);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (isset($this->all_vars['$' . $use->var])) {
|
|
if (!isset($this->warn_vars['$' . $use->var])) {
|
|
$this->warn_vars[$use->var] = true;
|
|
if (IssueBuffer::accepts(
|
|
new PossiblyUndefinedVariable(
|
|
'Possibly undefined variable $' . $use->var . ', first seen on line ' . $this->all_vars['$' . $use->var],
|
|
$this->checked_file_name,
|
|
$use->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($context->check_variables) {
|
|
IssueBuffer::add(
|
|
new UndefinedVariable('Cannot find referenced variable $' . $use->var, $this->checked_file_name, $use->getLine())
|
|
);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
protected function checkStaticCall(PhpParser\Node\Expr\StaticCall $stmt, Context $context)
|
|
{
|
|
if ($stmt->class instanceof PhpParser\Node\Expr\Variable || $stmt->class instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
|
// this is when calling $some_class::staticMethod() - which is a shitty way of doing things
|
|
// because it can't be statically type-checked
|
|
return;
|
|
}
|
|
|
|
$method_id = null;
|
|
$absolute_class = null;
|
|
|
|
$lhs_type = null;
|
|
|
|
if ($stmt->class instanceof PhpParser\Node\Name) {
|
|
$absolute_class = null;
|
|
|
|
if (count($stmt->class->parts) === 1 && in_array($stmt->class->parts[0], ['self', 'static', 'parent'])) {
|
|
if ($stmt->class->parts[0] === 'parent') {
|
|
if ($this->parent_class === null) {
|
|
if (IssueBuffer::accepts(
|
|
new ParentNotFound('Cannot call method on parent as this class does not extend another', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$absolute_class = $this->parent_class;
|
|
} else {
|
|
$absolute_class = ($this->namespace ? $this->namespace . '\\' : '') . $this->class_name;
|
|
}
|
|
|
|
if ($this->isPhantomClass($absolute_class)) {
|
|
return;
|
|
}
|
|
}
|
|
elseif ($context->check_classes) {
|
|
|
|
$absolute_class = ClassLikeChecker::getAbsoluteClassFromName($stmt->class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($this->isPhantomClass($absolute_class)) {
|
|
return;
|
|
}
|
|
|
|
$does_class_exist = ClassLikeChecker::checkAbsoluteClassOrInterface(
|
|
$absolute_class,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if (!$does_class_exist) {
|
|
return $does_class_exist;
|
|
}
|
|
}
|
|
|
|
if ($stmt->class->parts === ['parent'] && is_string($stmt->name)) {
|
|
if (ClassLikeChecker::getThisClass()) {
|
|
$method_id = $absolute_class . '::' . strtolower($stmt->name);
|
|
|
|
if ($this->checkInsideMethod($method_id, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($absolute_class) {
|
|
$lhs_type = new Type\Union([new Type\Atomic($absolute_class)]);
|
|
}
|
|
}
|
|
else {
|
|
$this->checkExpression($stmt->class, $context);
|
|
|
|
/** @var Type\Union */
|
|
$lhs_type = $stmt->class->inferredType;
|
|
}
|
|
|
|
if (!$context->check_methods || !$lhs_type) {
|
|
return;
|
|
}
|
|
|
|
$has_mock = false;
|
|
|
|
foreach ($lhs_type->types as $lhs_type_part) {
|
|
$absolute_class = $lhs_type_part->value;
|
|
|
|
$is_mock = self::isMock($absolute_class);
|
|
|
|
$has_mock = $has_mock || $is_mock;
|
|
|
|
if (is_string($stmt->name) && !method_exists($absolute_class, '__callStatic') && !$is_mock) {
|
|
$method_id = $absolute_class . '::' . strtolower($stmt->name);
|
|
$cased_method_id = $absolute_class . '::' . $stmt->name;
|
|
|
|
if (!isset(self::$method_call_index[$method_id])) {
|
|
self::$method_call_index[$method_id] = [];
|
|
}
|
|
|
|
if ($this->source instanceof MethodChecker) {
|
|
self::$method_call_index[$method_id][] = $this->source->getMethodId();
|
|
}
|
|
else {
|
|
self::$method_call_index[$method_id][] = $this->source->getFileName();
|
|
}
|
|
|
|
$does_method_exist = MethodChecker::checkMethodExists($cased_method_id, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues);
|
|
|
|
if (!$does_method_exist) {
|
|
return $does_method_exist;
|
|
}
|
|
|
|
if (MethodChecker::checkMethodVisibility($method_id, $context->self, $this->source, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($this->is_static) {
|
|
if (MethodChecker::checkMethodStatic($method_id, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if ($stmt->class->parts[0] === 'self' && $stmt->name !== '__construct') {
|
|
if (MethodChecker::checkMethodStatic($method_id, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (MethodChecker::checkMethodNotDeprecated($method_id, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
|
|
$return_types = MethodChecker::getMethodReturnTypes($method_id);
|
|
|
|
if ($return_types) {
|
|
$return_types = self::fleshOutTypes($return_types, $stmt->args, $stmt->class->parts === ['parent'] ? $this->absolute_class : $absolute_class, $method_id);
|
|
|
|
if (isset($stmt->inferredType)) {
|
|
$stmt->inferredType = Type::combineUnionTypes($stmt->inferredType, $return_types);
|
|
}
|
|
else {
|
|
$stmt->inferredType = $return_types;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($this->checkFunctionArguments($stmt->args, $method_id, $context, $stmt->getLine(), $has_mock) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @param Type\Union $return_type
|
|
* @param array<PhpParser\Node\Arg> $args
|
|
* @param string|null $calling_class
|
|
* @param string|null $method_id
|
|
* @return Type\Union
|
|
*/
|
|
public static function fleshOutTypes(Type\Union $return_type, array $args, $calling_class, $method_id)
|
|
{
|
|
$return_type = clone $return_type;
|
|
|
|
$new_return_type_parts = [];
|
|
|
|
foreach ($return_type->types as $key => $return_type_part) {
|
|
$new_return_type_parts[] = self::fleshOutAtomicType($return_type_part, $args, $calling_class, $method_id);
|
|
}
|
|
|
|
return new Type\Union($new_return_type_parts);
|
|
}
|
|
|
|
/**
|
|
* @param Type\Atomic &$return_type
|
|
* @param array<PhpParser\Node\Arg> $args
|
|
* @param string|null $calling_class
|
|
* @param string|null $method_id
|
|
* @return Type\Atomic
|
|
*/
|
|
protected static function fleshOutAtomicType(Type\Atomic $return_type, array $args, $calling_class, $method_id)
|
|
{
|
|
if ($return_type->value === '$this' || $return_type->value === 'static' || $return_type->value === 'self') {
|
|
if (!$calling_class) {
|
|
throw new \InvalidArgumentException('Cannot handle ' . $return_type->value . ' when $calling_class is empty', null);
|
|
}
|
|
|
|
$return_type->value = $calling_class;
|
|
}
|
|
else if ($return_type->value[0] === '$' && $method_id) {
|
|
$method_params = MethodChecker::getMethodParams($method_id);
|
|
|
|
foreach ($args as $i => $arg) {
|
|
$method_param = $method_params[$i];
|
|
|
|
if ($return_type->value === '$' . $method_param->name) {
|
|
$arg_value = $arg->value;
|
|
if ($arg_value instanceof PhpParser\Node\Scalar\String_) {
|
|
$return_type->value = preg_replace('/^\\\/', '', $arg_value->value);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($return_type->value[0] === '$') {
|
|
$return_type = new Type\Atomic('mixed');
|
|
}
|
|
}
|
|
|
|
if ($return_type instanceof Type\Generic) {
|
|
foreach ($return_type->type_params as &$type_param) {
|
|
$type_param = self::fleshOutTypes($type_param, $args, $calling_class, $method_id);
|
|
}
|
|
}
|
|
|
|
return $return_type;
|
|
}
|
|
|
|
/**
|
|
* @param string $call
|
|
* @param PhpParser\Node\Arg[] $args
|
|
* @param string $method_id
|
|
* @return string|null
|
|
*/
|
|
protected static function getMethodFromCallBlock($call, array $args, $method_id)
|
|
{
|
|
$absolute_class = explode('::', $method_id)[0];
|
|
|
|
$original_call = $call;
|
|
|
|
$call = preg_replace('/^\$this(->|::)/', $absolute_class . '::', $call);
|
|
|
|
$call = preg_replace('/\(\)$/', '', $call);
|
|
|
|
if (strpos($call, '$') !== false) {
|
|
$method_params = MethodChecker::getMethodParams($method_id);
|
|
|
|
foreach ($args as $i => $arg) {
|
|
$method_param = $method_params[$i];
|
|
$preg_var_name = preg_quote('$' . $method_param['name']);
|
|
|
|
if (preg_match('/::' . $preg_var_name . '$/', $call)) {
|
|
if ($arg->value instanceof PhpParser\Node\Scalar\String_) {
|
|
$call = preg_replace('/' . $preg_var_name . '$/', $arg->value->value, $call);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $original_call === $call || strpos($call, '$') !== false ? null : $call;
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Arg[] $args
|
|
* @param string $method_id
|
|
* @param Context $context
|
|
* @param int $line_number
|
|
* @param boolean $is_mock
|
|
* @return false|null
|
|
*/
|
|
protected function checkFunctionArguments(array $args, $method_id, Context $context, $line_number, $is_mock = false)
|
|
{
|
|
$function_params = null;
|
|
|
|
$is_variadic = false;
|
|
|
|
if ($method_id) {
|
|
$function_params = FunctionLikeChecker::getParamsById($method_id, $args, $this->file_name);
|
|
|
|
if (strpos($method_id, '::')) {
|
|
$is_variadic = $is_mock || MethodChecker::isVariadic($method_id);
|
|
}
|
|
else {
|
|
$is_variadic = FunctionChecker::isVariadic(strtolower($method_id), $this->file_name);
|
|
}
|
|
}
|
|
|
|
foreach ($args as $argument_offset => $arg) {
|
|
if ($arg->value instanceof PhpParser\Node\Expr\PropertyFetch) {
|
|
if ($method_id) {
|
|
$by_ref = false;
|
|
$by_ref_type = null;
|
|
|
|
if ($function_params) {
|
|
$by_ref = $argument_offset < count($function_params) && $function_params[$argument_offset]->by_ref;
|
|
$by_ref_type = $by_ref && $argument_offset < count($function_params) ? clone $function_params[$argument_offset]->type : null;
|
|
}
|
|
|
|
if ($by_ref && $by_ref_type) {
|
|
$this->assignByRefParam($arg->value, $by_ref_type, $context);
|
|
}
|
|
else {
|
|
if ($this->checkPropertyFetch($arg->value, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
$var_id = self::getVarId($arg->value, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($var_id && (!isset($context->vars_in_scope[$var_id]) || $context->vars_in_scope[$var_id]->isNull())) {
|
|
// we don't know if it exists, assume it's passed by reference
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
$this->registerVariable('$' . $var_id, $arg->value->getLine());
|
|
}
|
|
}
|
|
}
|
|
elseif ($arg->value instanceof PhpParser\Node\Expr\Variable) {
|
|
if ($method_id) {
|
|
$by_ref = false;
|
|
$by_ref_type = null;
|
|
|
|
if ($function_params) {
|
|
$by_ref = $argument_offset < count($function_params) && $function_params[$argument_offset]->by_ref;
|
|
$by_ref_type = $by_ref && $argument_offset < count($function_params) ? clone $function_params[$argument_offset]->type : null;
|
|
}
|
|
|
|
if ($this->checkVariable($arg->value, $context, $by_ref, $by_ref_type) === false) {
|
|
return false;
|
|
}
|
|
|
|
} elseif (is_string($arg->value->name)) {
|
|
if (false || !isset($context->vars_in_scope['$' . $arg->value->name]) || $context->vars_in_scope['$' . $arg->value->name]->isNull()) {
|
|
// we don't know if it exists, assume it's passed by reference
|
|
$context->vars_in_scope['$' . $arg->value->name] = Type::getMixed();
|
|
$context->vars_possibly_in_scope['$' . $arg->value->name] = true;
|
|
$this->registerVariable('$' . $arg->value->name, $arg->value->getLine());
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
if ($this->checkExpression($arg->value, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
// we need to do this calculation after the above vars have already processed
|
|
$function_params = $method_id ? FunctionLikeChecker::getParamsById($method_id, $args, $this->file_name) : [];
|
|
|
|
$cased_method_id = $method_id;
|
|
|
|
if (strpos($method_id, '::')) {
|
|
$cased_method_id = MethodChecker::getCasedMethodId($method_id);
|
|
}
|
|
|
|
if ($function_params) {
|
|
foreach ($function_params as $function_param) {
|
|
$is_variadic = $is_variadic || $function_param->is_variadic;
|
|
}
|
|
}
|
|
|
|
|
|
$has_packed_var = false;
|
|
|
|
foreach ($args as $arg) {
|
|
$has_packed_var = $has_packed_var || $arg->unpack;
|
|
}
|
|
|
|
foreach ($args as $argument_offset => $arg) {
|
|
if ($method_id && isset($arg->value->inferredType)) {
|
|
if (count($function_params) > $argument_offset) {
|
|
$param_type = $function_params[$argument_offset]->type;
|
|
|
|
// for now stop when we encounter a variadic param pr a packed argument
|
|
if ($function_params[$argument_offset]->is_variadic || $arg->unpack) {
|
|
break;
|
|
}
|
|
|
|
if ($this->checkFunctionArgumentType(
|
|
$arg->value->inferredType,
|
|
$param_type,
|
|
$cased_method_id,
|
|
$argument_offset,
|
|
$arg->value->getLine()
|
|
) === false
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($method_id) {
|
|
if (!$is_variadic
|
|
&& count($args) > count($function_params)
|
|
&& (!count($function_params) || $function_params[count($function_params) - 1]->name !== '...=')
|
|
) {
|
|
if (IssueBuffer::accepts(
|
|
new TooManyArguments('Too many arguments for method ' . ($cased_method_id ?: $method_id), $this->checked_file_name, $line_number),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (!$has_packed_var && count($args) < count($function_params)) {
|
|
for ($i = count($args); $i < count($function_params); $i++) {
|
|
$param = $function_params[$i];
|
|
|
|
if (!$param->is_optional && !$param->is_variadic) {
|
|
if (IssueBuffer::accepts(
|
|
new TooFewArguments('Too few arguments for method ' . $cased_method_id, $this->checked_file_name, $line_number),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
protected function checkConstAssignment(PhpParser\Node\Stmt\Const_ $stmt, Context $context)
|
|
{
|
|
foreach ($stmt->consts as $const) {
|
|
$this->checkExpression($const->value, $context);
|
|
|
|
self::$user_constants[$this->file_name][$const->name] = isset($const->value->inferredType) ? $const->value->inferredType : Type::getMixed();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return null|false
|
|
*/
|
|
protected function checkConstFetch(PhpParser\Node\Expr\ConstFetch $stmt)
|
|
{
|
|
$const_name = implode('', $stmt->name->parts);
|
|
switch (strtolower($const_name)) {
|
|
case 'null':
|
|
$stmt->inferredType = Type::getNull();
|
|
break;
|
|
|
|
case 'false':
|
|
// false is a subtype of bool
|
|
$stmt->inferredType = Type::getFalse();
|
|
break;
|
|
|
|
case 'true':
|
|
$stmt->inferredType = Type::getBool();
|
|
break;
|
|
|
|
default:
|
|
if (isset(self::$user_constants[$this->file_name][$const_name])) {
|
|
$stmt->inferredType = clone self::$user_constants[$this->file_name][$const_name];
|
|
}
|
|
elseif (!defined($const_name)) {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedConstant('Const ' . $const_name . ' is not defined', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return null|false
|
|
*/
|
|
protected function checkClassConstFetch(PhpParser\Node\Expr\ClassConstFetch $stmt, Context $context)
|
|
{
|
|
if ($context->check_consts && $stmt->class instanceof PhpParser\Node\Name && $stmt->class->parts !== ['static']) {
|
|
if ($stmt->class->parts === ['self']) {
|
|
$absolute_class = (string)$context->self;
|
|
}
|
|
else {
|
|
$absolute_class = ClassLikeChecker::getAbsoluteClassFromName($stmt->class, $this->namespace, $this->aliased_classes);
|
|
if (ClassLikeChecker::checkAbsoluteClassOrInterface($absolute_class, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$const_id = $absolute_class . '::' . $stmt->name;
|
|
|
|
$class_constants = ClassLikeChecker::getConstantsForClass($absolute_class, \ReflectionProperty::IS_PUBLIC);
|
|
|
|
if (!isset($class_constants[$stmt->name])) {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedConstant('Const ' . $const_id . ' is not defined', $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
$stmt->inferredType = $class_constants[$stmt->name];
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($stmt->class instanceof PhpParser\Node\Expr) {
|
|
if ($this->checkExpression($stmt->class, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return null|false
|
|
*/
|
|
protected function checkStaticPropertyFetch(PhpParser\Node\Expr\StaticPropertyFetch $stmt, Context $context)
|
|
{
|
|
if ($stmt->class instanceof PhpParser\Node\Expr\Variable || $stmt->class instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
|
// @todo check this
|
|
return;
|
|
}
|
|
|
|
$method_id = null;
|
|
$absolute_class = null;
|
|
|
|
if ($stmt->class instanceof PhpParser\Node\Name) {
|
|
if (count($stmt->class->parts) === 1 && in_array($stmt->class->parts[0], ['self', 'static', 'parent'])) {
|
|
if ($stmt->class->parts[0] === 'parent') {
|
|
$absolute_class = $this->parent_class;
|
|
} else {
|
|
$absolute_class = ($this->namespace ? $this->namespace . '\\' : '') . $this->class_name;
|
|
}
|
|
|
|
if ($this->isPhantomClass($absolute_class)) {
|
|
return null;
|
|
}
|
|
}
|
|
elseif ($context->check_classes) {
|
|
$absolute_class = ClassLikeChecker::getAbsoluteClassFromName($stmt->class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($this->isPhantomClass($absolute_class)) {
|
|
return;
|
|
}
|
|
|
|
if (ClassLikeChecker::checkAbsoluteClassOrInterface($absolute_class, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$stmt->class->inferredType = $absolute_class ? new Type\Union([new Type\Atomic($absolute_class)]) : null;
|
|
}
|
|
|
|
if ($absolute_class && $context->check_variables && is_string($stmt->name) && !self::isMock($absolute_class)) {
|
|
$var_id = self::getVarId($stmt, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
|
|
if ($var_id && isset($context->vars_in_scope[$var_id])) {
|
|
// we don't need to check anything
|
|
$stmt->inferredType = $context->vars_in_scope[$var_id];
|
|
return;
|
|
}
|
|
|
|
if ($absolute_class === $context->self
|
|
|| ($this->source->getSource() instanceof TraitChecker && $absolute_class === $this->source->getAbsoluteClass())
|
|
) {
|
|
$class_visibility = \ReflectionProperty::IS_PRIVATE;
|
|
}
|
|
elseif ($context->self && ClassChecker::classExtends($context->self, $absolute_class)) {
|
|
$class_visibility = \ReflectionProperty::IS_PROTECTED;
|
|
}
|
|
else {
|
|
$class_visibility = \ReflectionProperty::IS_PUBLIC;
|
|
}
|
|
|
|
$visible_class_properties = ClassLikeChecker::getStaticPropertiesForClass(
|
|
$absolute_class,
|
|
$class_visibility
|
|
);
|
|
|
|
if (!isset($visible_class_properties[$stmt->name])) {
|
|
$all_class_properties = [];
|
|
|
|
if ($absolute_class !== $context->self) {
|
|
$all_class_properties = ClassLikeChecker::getStaticPropertiesForClass(
|
|
$absolute_class,
|
|
\ReflectionProperty::IS_PRIVATE
|
|
);
|
|
}
|
|
|
|
if ($all_class_properties && isset($all_class_properties[$stmt->name])) {
|
|
IssueBuffer::add(
|
|
new InvisibleProperty('Static property ' . $var_id . ' is not visible in this context', $this->checked_file_name, $stmt->getLine())
|
|
);
|
|
}
|
|
else {
|
|
IssueBuffer::add(
|
|
new UndefinedPropertyFetch('Static property ' . $var_id . ' does not exist', $this->checked_file_name, $stmt->getLine())
|
|
);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
$context->vars_in_scope[$var_id] = clone $visible_class_properties[$stmt->name];
|
|
$stmt->inferredType = clone $visible_class_properties[$stmt->name];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Stmt\Return_ $stmt
|
|
* @param Context $context
|
|
* @return false|null
|
|
*/
|
|
protected function checkReturn(PhpParser\Node\Stmt\Return_ $stmt, Context $context)
|
|
{
|
|
$type_in_comments = CommentChecker::getTypeFromComment((string) $stmt->getDocComment(), $context, $this->source);
|
|
|
|
if ($stmt->expr) {
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($type_in_comments) {
|
|
$stmt->inferredType = $type_in_comments;
|
|
}
|
|
elseif (isset($stmt->expr->inferredType)) {
|
|
$stmt->inferredType = $stmt->expr->inferredType;
|
|
}
|
|
else {
|
|
$stmt->inferredType = Type::getMixed();
|
|
}
|
|
}
|
|
else {
|
|
$stmt->inferredType = Type::getVoid();
|
|
}
|
|
|
|
if ($this->source instanceof FunctionLikeChecker) {
|
|
$this->source->addReturnTypes($stmt->expr ? (string) $stmt->inferredType : '', $context);
|
|
}
|
|
}
|
|
|
|
protected function checkTernary(PhpParser\Node\Expr\Ternary $stmt, Context $context)
|
|
{
|
|
if ($this->checkExpression($stmt->cond, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$t_if_context = clone $context;
|
|
|
|
if ($stmt->cond instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
$reconcilable_if_types = $this->type_checker->getReconcilableTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
$negatable_if_types = $this->type_checker->getNegatableTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes
|
|
);
|
|
}
|
|
else {
|
|
$reconcilable_if_types = $negatable_if_types = $this->type_checker->getTypeAssertions(
|
|
$stmt->cond,
|
|
$this->absolute_class,
|
|
$this->namespace,
|
|
$this->aliased_classes);
|
|
}
|
|
|
|
$if_return_type = null;
|
|
|
|
$t_if_vars_in_scope_reconciled =
|
|
TypeChecker::reconcileKeyedTypes(
|
|
$reconcilable_if_types,
|
|
$t_if_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($t_if_vars_in_scope_reconciled === false) {
|
|
return false;
|
|
}
|
|
|
|
$t_if_context->vars_in_scope = $t_if_vars_in_scope_reconciled;
|
|
|
|
if ($stmt->if) {
|
|
if ($this->checkExpression($stmt->if, $t_if_context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$t_else_context = clone $context;
|
|
|
|
if ($negatable_if_types) {
|
|
$negated_if_types = TypeChecker::negateTypes($negatable_if_types);
|
|
|
|
$t_else_vars_in_scope_reconciled = TypeChecker::reconcileKeyedTypes(
|
|
$negated_if_types,
|
|
$t_else_context->vars_in_scope,
|
|
$this->checked_file_name,
|
|
$stmt->getLine(),
|
|
$this->suppressed_issues
|
|
);
|
|
|
|
if ($t_else_vars_in_scope_reconciled === false) {
|
|
return false;
|
|
}
|
|
$t_else_context->vars_in_scope = $t_else_vars_in_scope_reconciled;
|
|
}
|
|
|
|
if ($this->checkExpression($stmt->else, $t_else_context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$lhs_type = null;
|
|
|
|
if ($stmt->if) {
|
|
if (isset($stmt->if->inferredType)) {
|
|
$lhs_type = $stmt->if->inferredType;
|
|
}
|
|
}
|
|
elseif ($stmt->cond) {
|
|
if (isset($stmt->cond->inferredType)) {
|
|
$if_return_type_reconciled = TypeChecker::reconcileTypes('!empty', $stmt->cond->inferredType, '', $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues);
|
|
|
|
if ($if_return_type_reconciled === false) {
|
|
return false;
|
|
}
|
|
|
|
$lhs_type = $if_return_type_reconciled;
|
|
}
|
|
}
|
|
|
|
if (!$lhs_type || !isset($stmt->else->inferredType)) {
|
|
$stmt->inferredType = Type::getMixed();
|
|
}
|
|
else {
|
|
$stmt->inferredType = Type::combineUnionTypes($lhs_type, $stmt->else->inferredType);
|
|
}
|
|
}
|
|
|
|
protected function checkBooleanNot(PhpParser\Node\Expr\BooleanNot $stmt, Context $context)
|
|
{
|
|
return $this->checkExpression($stmt->expr, $context);
|
|
}
|
|
|
|
protected function checkEmpty(PhpParser\Node\Expr\Empty_ $stmt, Context $context)
|
|
{
|
|
return $this->checkExpression($stmt->expr, $context);
|
|
}
|
|
|
|
protected function checkThrow(PhpParser\Node\Stmt\Throw_ $stmt, Context $context)
|
|
{
|
|
return $this->checkExpression($stmt->expr, $context);
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Stmt\Switch_ $stmt
|
|
* @param Context $context
|
|
* @param Context|null $loop_context
|
|
* @return false|null
|
|
*/
|
|
protected function checkSwitch(PhpParser\Node\Stmt\Switch_ $stmt, Context $context, Context $loop_context = null)
|
|
{
|
|
$type_candidate_var = null;
|
|
|
|
if ($this->checkExpression($stmt->cond, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (isset($stmt->cond->inferredType) && array_values($stmt->cond->inferredType->types)[0] instanceof Type\T) {
|
|
$type_candidate_var = array_values($stmt->cond->inferredType->types)[0]->typeof;
|
|
}
|
|
|
|
$original_context = clone $context;
|
|
|
|
/** @var array<string,Type\Union>|null */
|
|
$new_vars_in_scope = null;
|
|
|
|
/** @var array<string,bool> */
|
|
$new_vars_possibly_in_scope = [];
|
|
|
|
/** @var array<string,Type\Union>|null */
|
|
$redefined_vars = null;
|
|
|
|
// the last statement always breaks, by default
|
|
$last_case_exit_type = 'break';
|
|
|
|
$case_exit_types = new \SplFixedArray(count($stmt->cases));
|
|
|
|
$has_default = false;
|
|
|
|
// create a map of case statement -> ultimate exit type
|
|
for ($i = count($stmt->cases) - 1; $i >= 0; $i--) {
|
|
$case = $stmt->cases[$i];
|
|
|
|
if (ScopeChecker::doesAlwaysReturnOrThrow($case->stmts)) {
|
|
$last_case_exit_type = 'return_throw';
|
|
}
|
|
elseif (ScopeChecker::doesAlwaysBreakOrContinue($case->stmts, true)) {
|
|
$last_case_exit_type = 'continue';
|
|
}
|
|
elseif (ScopeChecker::doesAlwaysBreakOrContinue($case->stmts)) {
|
|
$last_case_exit_type = 'break';
|
|
}
|
|
|
|
$case_exit_types[$i] = $last_case_exit_type;
|
|
}
|
|
|
|
$leftover_statements = [];
|
|
|
|
for ($i = count($stmt->cases) - 1; $i >= 0; $i--) {
|
|
$case = $stmt->cases[$i];
|
|
$case_exit_type = $case_exit_types[$i];
|
|
$case_type = null;
|
|
|
|
if ($case->cond) {
|
|
if ($this->checkExpression($case->cond, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($type_candidate_var && $case->cond instanceof PhpParser\Node\Scalar\String_) {
|
|
$case_type = $case->cond->value;
|
|
}
|
|
}
|
|
|
|
$switch_vars = $type_candidate_var && $case_type
|
|
? [$type_candidate_var => Type::parseString($case_type)]
|
|
: [];
|
|
|
|
$case_context = clone $original_context;
|
|
|
|
$case_context->vars_in_scope = array_merge($case_context->vars_in_scope, $switch_vars);
|
|
$case_context->vars_possibly_in_scope = array_merge($case_context->vars_possibly_in_scope, $switch_vars);
|
|
|
|
$old_case_context = clone $case_context;
|
|
|
|
$case_stmts = $case->stmts;
|
|
|
|
// has a return/throw at end
|
|
$has_ending_statements = ScopeChecker::doesAlwaysReturnOrThrow($case_stmts);
|
|
$has_leaving_statements = ScopeChecker::doesAlwaysBreakOrContinue($case_stmts);
|
|
|
|
if (!$case_stmts || (!$has_ending_statements && !$has_leaving_statements)) {
|
|
$case_stmts = array_merge($case_stmts, $leftover_statements);
|
|
$has_ending_statements = ScopeChecker::doesAlwaysReturnOrThrow($case_stmts);
|
|
}
|
|
else {
|
|
$leftover_statements = [];
|
|
}
|
|
|
|
$this->check($case_stmts, $case_context, $loop_context);
|
|
|
|
// has a return/throw at end
|
|
$has_ending_statements = ScopeChecker::doesAlwaysReturnOrThrow($case_stmts);
|
|
|
|
if ($case_exit_type !== 'return_throw') {
|
|
$vars = array_diff_key($case_context->vars_possibly_in_scope, $original_context->vars_possibly_in_scope);
|
|
|
|
// if we're leaving this block, add vars to outer for loop scope
|
|
if ($case_exit_type === 'continue') {
|
|
if ($loop_context) {
|
|
$loop_context->vars_possibly_in_scope = array_merge($vars, $loop_context->vars_possibly_in_scope);
|
|
}
|
|
else {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidContinue(
|
|
'Continue called when not in loop',
|
|
$this->checked_file_name,
|
|
$case->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
$case_redefined_vars = Context::getRedefinedVars($original_context, $case_context);
|
|
|
|
Type::redefineGenericUnionTypes($case_redefined_vars, $context);
|
|
|
|
if ($redefined_vars === null) {
|
|
$redefined_vars = $case_redefined_vars;
|
|
}
|
|
else {
|
|
foreach ($redefined_vars as $redefined_var => $type) {
|
|
if (!isset($case_redefined_vars[$redefined_var])) {
|
|
unset($redefined_vars[$redefined_var]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($new_vars_in_scope === null) {
|
|
$new_vars_in_scope = array_diff_key($case_context->vars_in_scope, $context->vars_in_scope);
|
|
$new_vars_possibly_in_scope = array_diff_key($case_context->vars_possibly_in_scope, $context->vars_possibly_in_scope);
|
|
}
|
|
else {
|
|
foreach ($new_vars_in_scope as $new_var => $type) {
|
|
if (!isset($case_context->vars_in_scope[$new_var])) {
|
|
unset($new_vars_in_scope[$new_var]);
|
|
}
|
|
}
|
|
|
|
$new_vars_possibly_in_scope = array_merge(
|
|
array_diff_key(
|
|
$case_context->vars_possibly_in_scope,
|
|
$context->vars_possibly_in_scope
|
|
),
|
|
$new_vars_possibly_in_scope
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($case->stmts) {
|
|
$leftover_statements = array_merge($leftover_statements, $case->stmts);
|
|
}
|
|
|
|
if (!$case->cond) {
|
|
$has_default = true;
|
|
}
|
|
}
|
|
|
|
// only update vars if there is a default
|
|
// if that default has a throw/return/continue, that should be handled above
|
|
if ($has_default) {
|
|
if ($new_vars_in_scope) {
|
|
$context->vars_in_scope = array_merge($context->vars_in_scope, $new_vars_in_scope);
|
|
}
|
|
|
|
if ($redefined_vars) {
|
|
$context->vars_in_scope = array_merge($context->vars_in_scope, $redefined_vars);
|
|
}
|
|
}
|
|
|
|
$context->vars_possibly_in_scope = array_merge($context->vars_possibly_in_scope, $new_vars_possibly_in_scope);
|
|
}
|
|
|
|
/**
|
|
* @param Type\Union $input_type
|
|
* @param Type\Union $param_type
|
|
* @param string $cased_method_id
|
|
* @param int $argument_offset
|
|
* @param int $line_number
|
|
* @return null|false
|
|
*/
|
|
protected function checkFunctionArgumentType(Type\Union $input_type, Type\Union $param_type, $cased_method_id, $argument_offset, $line_number)
|
|
{
|
|
if ($param_type->isMixed()) {
|
|
return;
|
|
}
|
|
|
|
if ($input_type->isMixed()) {
|
|
if (IssueBuffer::accepts(
|
|
new MixedArgument(
|
|
'Argument ' . ($argument_offset + 1) . ' of ' . $cased_method_id . ' cannot be mixed, expecting ' . $param_type,
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if ($input_type->isNullable() && !$param_type->isNullable()) {
|
|
if (IssueBuffer::accepts(
|
|
new NullReference(
|
|
'Argument ' . ($argument_offset + 1) . ' of ' . $cased_method_id . ' cannot be null, possibly null value provided',
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$type_match_found = FunctionLikeChecker::doesParamMatch($input_type, $param_type, $scalar_type_match_found, $coerced_type);
|
|
|
|
if ($coerced_type) {
|
|
if (IssueBuffer::accepts(
|
|
new TypeCoercion(
|
|
'Argument ' . ($argument_offset + 1) . ' of ' . $cased_method_id . ' expects ' . $param_type . ', parent type ' . $input_type . ' provided',
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (!$type_match_found) {
|
|
if ($scalar_type_match_found) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidScalarArgument(
|
|
'Argument ' . ($argument_offset + 1) . ' of ' . $cased_method_id . ' expects ' . $param_type . ', ' . $input_type . ' provided',
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
else if (IssueBuffer::accepts(
|
|
new InvalidArgument(
|
|
'Argument ' . ($argument_offset + 1) . ' of ' . $cased_method_id . ' expects ' . $param_type . ', ' . $input_type . ' provided',
|
|
$this->checked_file_name,
|
|
$line_number
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr\FuncCall $stmt
|
|
* @param Context $context
|
|
* @return false|null
|
|
*/
|
|
protected function checkFunctionCall(PhpParser\Node\Expr\FuncCall $stmt, Context $context)
|
|
{
|
|
$method = $stmt->name;
|
|
|
|
if ($method instanceof PhpParser\Node\Name) {
|
|
if ($method->parts === ['method_exists']) {
|
|
$context->check_methods = false;
|
|
|
|
}
|
|
elseif ($method->parts === ['class_exists']) {
|
|
if ($stmt->args[0]->value instanceof PhpParser\Node\Scalar\String_) {
|
|
$this->phantom_classes[$stmt->args[0]->value->value] = true;
|
|
}
|
|
else {
|
|
$context->check_classes = false;
|
|
}
|
|
|
|
}
|
|
elseif ($method->parts === ['function_exists']) {
|
|
$context->check_functions = false;
|
|
|
|
}
|
|
elseif ($method->parts === ['is_callable']) {
|
|
$context->check_methods = false;
|
|
$context->check_functions = false;
|
|
}
|
|
elseif ($method->parts === ['defined']) {
|
|
$context->check_consts = false;
|
|
|
|
}
|
|
elseif ($method->parts === ['extract']) {
|
|
$context->check_variables = false;
|
|
|
|
}
|
|
elseif ($method->parts === ['var_dump'] || $method->parts === ['die'] || $method->parts === ['exit']) {
|
|
if (IssueBuffer::accepts(
|
|
new ForbiddenCode('Unsafe ' . implode('', $method->parts), $this->checked_file_name, $stmt->getLine()),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
elseif ($method->parts === ['define']) {
|
|
if ($stmt->args[0]->value instanceof PhpParser\Node\Scalar\String_) {
|
|
$this->checkExpression($stmt->args[1]->value, $context);
|
|
$const_name = $stmt->args[0]->value->value;
|
|
|
|
self::$user_constants[$this->file_name][$const_name] = isset($stmt->args[1]->value->inferredType)
|
|
? $stmt->args[1]->value->inferredType
|
|
: Type::getMixed();
|
|
}
|
|
else {
|
|
$context->check_consts = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
$method_id = null;
|
|
|
|
if ($context->check_functions) {
|
|
if (!($stmt->name instanceof PhpParser\Node\Name)) {
|
|
return;
|
|
}
|
|
|
|
$method_id = implode('', $stmt->name->parts);
|
|
|
|
if ($context->self) {
|
|
//$method_id = $this->absolute_class . '::' . $method_id;
|
|
}
|
|
|
|
if ($this->checkFunctionExists($method_id, $context, $stmt->getLine()) === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($this->checkFunctionArguments($stmt->args, $method_id, $context, $stmt->getLine()) === false) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
$stmt->inferredType = FunctionChecker::getFunctionReturnTypes($method_id, $this->checked_file_name);
|
|
}
|
|
catch (\InvalidArgumentException $e) {
|
|
$stmt->inferredType = FunctionChecker::getReturnTypeFromCallMap($method_id, $stmt->args, $this->checked_file_name, $stmt->getLine(), $this->suppressed_issues);
|
|
}
|
|
|
|
}
|
|
|
|
if ($stmt->name instanceof PhpParser\Node\Name && $stmt->name->parts === ['get_class'] && $stmt->args) {
|
|
$var = $stmt->args[0]->value;
|
|
|
|
if ($var instanceof PhpParser\Node\Expr\Variable && is_string($var->name)) {
|
|
$stmt->inferredType = new Type\Union([new Type\T('$' . $var->name)]);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr\ArrayDimFetch $stmt
|
|
* @param array &$context->vars_in_scope
|
|
* @param array &$context->vars_possibly_in_scope
|
|
* @return false|null
|
|
*/
|
|
protected function checkArrayAccess(
|
|
PhpParser\Node\Expr\ArrayDimFetch $stmt,
|
|
Context $context,
|
|
$array_assignment = false,
|
|
Type\Union $assignment_key_type = null,
|
|
Type\Union $assignment_value_type = null,
|
|
$assignment_key_value = null
|
|
) {
|
|
$var_type = null;
|
|
$key_type = null;
|
|
$key_value = null;
|
|
|
|
$nesting = 0;
|
|
$var_id = self::getVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes, $nesting);
|
|
|
|
$is_object = $var_id && isset($context->vars_in_scope[$var_id]) && $context->vars_in_scope[$var_id]->hasObjectType();
|
|
$array_var_id = self::getArrayVarId($stmt->var, $this->absolute_class, $this->namespace, $this->aliased_classes);
|
|
$keyed_array_var_id = $array_var_id && $stmt->dim instanceof PhpParser\Node\Scalar\String_
|
|
? $array_var_id . '[\'' . $stmt->dim->value . '\']'
|
|
: null;
|
|
|
|
if ($stmt->dim && $this->checkExpression($stmt->dim, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($stmt->dim) {
|
|
if (isset($stmt->dim->inferredType)) {
|
|
/** @var Type\Union */
|
|
$key_type = $stmt->dim->inferredType;
|
|
|
|
if ($stmt->dim instanceof PhpParser\Node\Scalar\String_) {
|
|
$key_value = $stmt->dim->value;
|
|
}
|
|
}
|
|
else {
|
|
$key_type = Type::getMixed();
|
|
}
|
|
}
|
|
else {
|
|
$key_type = Type::getInt();
|
|
}
|
|
|
|
$keyed_assignment_type = null;
|
|
|
|
if ($array_assignment && $assignment_key_type && $assignment_value_type) {
|
|
$keyed_assignment_type =
|
|
$keyed_array_var_id && isset($context->vars_in_scope[$keyed_array_var_id])
|
|
? $context->vars_in_scope[$keyed_array_var_id]
|
|
: null;
|
|
|
|
if (!$keyed_assignment_type || $keyed_assignment_type->isEmpty()) {
|
|
if (!$assignment_key_type->isMixed() && !$assignment_key_type->hasInt() && $assignment_key_value) {
|
|
$keyed_assignment_type = new Type\Union([
|
|
new Type\ObjectLike(
|
|
'object-like',
|
|
[
|
|
$assignment_key_value => $assignment_value_type
|
|
]
|
|
)
|
|
]);
|
|
}
|
|
else {
|
|
$keyed_assignment_type = Type::getEmptyArray();
|
|
$keyed_assignment_type->types['array']->type_params[0] = $assignment_key_type;
|
|
$keyed_assignment_type->types['array']->type_params[1] = $assignment_value_type;
|
|
}
|
|
}
|
|
else {
|
|
foreach ($keyed_assignment_type->types as &$type) {
|
|
if ($type->isScalarType() && !$type->isString()) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidArrayAssignment(
|
|
'Cannot assign value on variable ' . $var_id . ' of scalar type ' . $type->value,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if ($type instanceof Type\Generic) {
|
|
$refined_type = $this->refineArrayType($type, $assignment_key_type, $assignment_value_type, $var_id, $stmt->getLine());
|
|
|
|
if ($refined_type === false) {
|
|
return false;
|
|
}
|
|
|
|
if ($refined_type === null) {
|
|
continue;
|
|
}
|
|
|
|
$type = $refined_type;
|
|
}
|
|
elseif ($type instanceof Type\ObjectLike && $assignment_key_value) {
|
|
if (isset($type->properties[$assignment_key_value])) {
|
|
$type->properties[$assignment_key_value] = Type::combineUnionTypes(
|
|
$type->properties[$assignment_key_value],
|
|
$assignment_value_type
|
|
);
|
|
}
|
|
else {
|
|
$type->properties[$assignment_key_value] = $assignment_value_type;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($this->checkExpression($stmt->var, $context, $array_assignment, $key_type, $keyed_assignment_type, $key_value) === false) {
|
|
return false;
|
|
}
|
|
|
|
if (isset($stmt->var->inferredType)) {
|
|
/** @var Type\Union */
|
|
$var_type = $stmt->var->inferredType;
|
|
|
|
foreach ($var_type->types as &$type) {
|
|
if ($type instanceof Type\Generic || $type instanceof Type\ObjectLike) {
|
|
$value_index = null;
|
|
|
|
if ($type instanceof Type\Generic) {
|
|
// create a union type to pass back to the statement
|
|
$value_index = count($type->type_params) - 1;
|
|
|
|
if ($value_index) {
|
|
// if we're assigning to an empty array with a key offset, refashion that array
|
|
if ($array_assignment && $type->type_params[0]->isEmpty()) {
|
|
if ($key_type) {
|
|
$type->type_params[0] = $key_type;
|
|
}
|
|
}
|
|
else {
|
|
if ($key_type) {
|
|
$key_type = Type::combineUnionTypes($key_type, $type->type_params[0]);
|
|
}
|
|
else {
|
|
$key_type = $type->type_params[0];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($array_assignment && !$is_object) {
|
|
// if we're in an array assignment then we need to create some variables
|
|
// e.g.
|
|
// $a = [];
|
|
// $a['b']['c']['d'] = 3;
|
|
//
|
|
// means we need add $a['b'], $a['b']['c'] to the current context
|
|
// (but not $a['b']['c']['d'], which is handled in checkArrayAssignment)
|
|
if ($keyed_array_var_id && $keyed_assignment_type) {
|
|
if (isset($context->vars_in_scope[$keyed_array_var_id])) {
|
|
$context->vars_in_scope[$keyed_array_var_id] = Type::combineUnionTypes(
|
|
$keyed_assignment_type,
|
|
$context->vars_in_scope[$keyed_array_var_id]
|
|
);
|
|
}
|
|
else {
|
|
$context->vars_in_scope[$keyed_array_var_id] = $keyed_assignment_type;
|
|
}
|
|
|
|
$stmt->inferredType = $keyed_assignment_type;
|
|
}
|
|
|
|
if ($array_var_id === $var_id) {
|
|
if ($type instanceof Type\ObjectLike || ($type->isArray() && !$key_type->hasInt() && $type->type_params[1]->isEmpty())) {
|
|
$properties = $key_value ? [$key_value => $keyed_assignment_type] : [];
|
|
|
|
$assignment_type = new Type\Union([
|
|
new Type\ObjectLike(
|
|
'object-like',
|
|
$properties
|
|
)
|
|
]);
|
|
}
|
|
else {
|
|
$assignment_type = new Type\Union([
|
|
new Type\Generic(
|
|
'array',
|
|
[
|
|
$key_type,
|
|
$keyed_assignment_type
|
|
]
|
|
)
|
|
]);
|
|
}
|
|
|
|
if (isset($context->vars_in_scope[$var_id])) {
|
|
$context->vars_in_scope[$var_id] = Type::combineUnionTypes(
|
|
$context->vars_in_scope[$var_id],
|
|
$assignment_type
|
|
);
|
|
}
|
|
else {
|
|
$context->vars_in_scope[$var_id] = $assignment_type;
|
|
}
|
|
}
|
|
|
|
if ($type instanceof Type\Generic && $type->type_params[$value_index]->isEmpty()) {
|
|
$empty_type = Type::getEmptyArray();
|
|
|
|
if (!isset($stmt->inferredType)) {
|
|
// if in array assignment and the referenced variable does not have
|
|
// an array at this level, create one
|
|
$stmt->inferredType = $empty_type;
|
|
}
|
|
|
|
$context_type = clone $context->vars_in_scope[$var_id];
|
|
|
|
$array_type = $context_type;
|
|
|
|
for ($i = 0; $i < $nesting + 1; $i++) {
|
|
if ($array_type->hasArray()) {
|
|
if ($i < $nesting) {
|
|
if ($array_type->types['array']->type_params[1]->isEmpty()) {
|
|
$new_empty = clone $empty_type;
|
|
|
|
$new_empty->types['array']->type_params[0] = $key_type;
|
|
|
|
$array_type->types['array']->type_params[1] = $new_empty;
|
|
continue;
|
|
}
|
|
|
|
$array_type = $array_type->types['array']->type_params[1];
|
|
}
|
|
else {
|
|
$array_type->types['array']->type_params[0] = $key_type;
|
|
}
|
|
}
|
|
}
|
|
|
|
$context->vars_in_scope[$var_id] = $context_type;
|
|
}
|
|
}
|
|
elseif ($type instanceof Type\Generic && $value_index !== null) {
|
|
$stmt->inferredType = $type->type_params[$value_index];
|
|
}
|
|
elseif ($type instanceof Type\ObjectLike) {
|
|
if ($key_value && isset($type->properties[$key_value])) {
|
|
$stmt->inferredType = clone $type->properties[$key_value];
|
|
}
|
|
elseif ($key_type->hasInt()) {
|
|
$object_like_keys = array_keys($type->properties);
|
|
if ($object_like_keys) {
|
|
if (count($object_like_keys) === 1) {
|
|
$expected_keys_string = '\'' . $object_like_keys[0] . '\'';
|
|
}
|
|
else {
|
|
$last_key = array_pop($object_like_keys);
|
|
$expected_keys_string = '\'' . implode('\', \'', $object_like_keys) . '\' or \'' . $last_key . '\'';
|
|
}
|
|
}
|
|
else {
|
|
$expected_keys_string = 'string';
|
|
}
|
|
|
|
if (IssueBuffer::accepts(
|
|
new InvalidArrayAccess(
|
|
'Cannot access value on object-like variable ' . $var_id . ' using int offset - expecting ' . $expected_keys_string,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
elseif ($type->isString()) {
|
|
if ($key_type) {
|
|
$key_type = Type::combineUnionTypes($key_type, Type::getInt());
|
|
}
|
|
else {
|
|
$key_type = Type::getInt();
|
|
}
|
|
|
|
$stmt->inferredType = Type::getString();
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($keyed_array_var_id && isset($context->vars_in_scope[$keyed_array_var_id])) {
|
|
$stmt->inferredType = $context->vars_in_scope[$keyed_array_var_id];
|
|
}
|
|
|
|
if (!isset($stmt->inferredType)) {
|
|
$stmt->inferredType = Type::getMixed();
|
|
}
|
|
|
|
if (!$key_type) {
|
|
$key_type = new Type\Union([
|
|
new Type\Atomic('int'),
|
|
new Type\Atomic('string')
|
|
]);
|
|
}
|
|
|
|
if ($stmt->dim) {
|
|
if (isset($stmt->dim->inferredType) && $key_type && !$key_type->isEmpty()) {
|
|
foreach ($stmt->dim->inferredType->types as $at) {
|
|
if (($at->isMixed() || $at->isEmpty()) && !$key_type->isMixed()) {
|
|
if (IssueBuffer::accepts(
|
|
new MixedArrayOffset(
|
|
'Cannot access value on variable ' . $var_id . ' using mixed offset - expecting ' . $key_type,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
elseif (!$at->isIn($key_type)) {
|
|
if (IssueBuffer::accepts(
|
|
new InvalidArrayAccess(
|
|
'Cannot access value on variable ' . $var_id . ' using ' . $at . ' offset - expecting ' . $key_type,
|
|
$this->checked_file_name,
|
|
$stmt->getLine()
|
|
),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Scalar\Encapsed $stmt
|
|
* @param Context $context
|
|
* @return false|null
|
|
*/
|
|
protected function checkEncapsulatedString(PhpParser\Node\Scalar\Encapsed $stmt, Context $context)
|
|
{
|
|
/** @var PhpParser\Node\Expr $part */
|
|
foreach ($stmt->parts as $part) {
|
|
if ($this->checkExpression($part, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$stmt->inferredType = Type::getString();
|
|
}
|
|
|
|
/**
|
|
* @param string $var_name
|
|
* @param int $line_number
|
|
* @return void
|
|
*/
|
|
public function registerVariable($var_name, $line_number)
|
|
{
|
|
if (!isset($this->all_vars[$var_name])) {
|
|
$this->all_vars[$var_name] = $line_number;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr $dim
|
|
* @return Type\Union
|
|
*/
|
|
protected static function getArrayTypeFromDim(PhpParser\Node\Expr $dim)
|
|
{
|
|
if ($dim) {
|
|
if (isset($dim->inferredType)) {
|
|
return $dim->inferredType;
|
|
}
|
|
else {
|
|
return new Type\Union([Type::getInt()->types['int'], Type::getString()->types['string']]);
|
|
}
|
|
}
|
|
else {
|
|
return Type::getInt();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string $function_id
|
|
* @param Context $context
|
|
* @return bool
|
|
*/
|
|
protected function checkFunctionExists($function_id, Context $context, $line_number)
|
|
{
|
|
$cased_function_id = $function_id;
|
|
$function_id = strtolower($function_id);
|
|
|
|
if (!isset($this->existing_functions[$function_id])) {
|
|
$this->existing_functions[$function_id] = FunctionChecker::functionExists($function_id, $context->file_name);
|
|
}
|
|
|
|
if (!$this->existing_functions[$function_id]) {
|
|
if (IssueBuffer::accepts(
|
|
new UndefinedFunction('Function ' . $cased_function_id . ' does not exist', $this->checked_file_name, $line_number),
|
|
$this->suppressed_issues
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr\Include_ $stmt
|
|
* @param Context $context
|
|
* @return false|null
|
|
*/
|
|
protected function checkInclude(PhpParser\Node\Expr\Include_ $stmt, Context $context)
|
|
{
|
|
if ($this->checkExpression($stmt->expr, $context) === false) {
|
|
return false;
|
|
}
|
|
|
|
$path_to_file = null;
|
|
|
|
if ($stmt->expr instanceof PhpParser\Node\Scalar\String_) {
|
|
$path_to_file = $stmt->expr->value;
|
|
|
|
// attempts to resolve using get_include_path dirs
|
|
$include_path = self::resolveIncludePath($path_to_file, dirname($this->checked_file_name));
|
|
$path_to_file = $include_path ? $include_path : $path_to_file;
|
|
|
|
if ($path_to_file[0] !== '/') {
|
|
$path_to_file = getcwd() . '/' . $path_to_file;
|
|
}
|
|
}
|
|
else {
|
|
$path_to_file = self::getPathTo($stmt->expr, $this->include_file_name ?: $this->file_name);
|
|
}
|
|
|
|
if ($path_to_file) {
|
|
$reduce_pattern = '/\/[^\/]+\/\.\.\//';
|
|
|
|
while (preg_match($reduce_pattern, $path_to_file)) {
|
|
$path_to_file = preg_replace($reduce_pattern, '/', $path_to_file);
|
|
}
|
|
|
|
// if the file is already included, we can't check much more
|
|
if (in_array($path_to_file, get_included_files())) {
|
|
return;
|
|
}
|
|
|
|
/*
|
|
if (in_array($path_to_file, FileChecker::getIncludesToIgnore())) {
|
|
$context->check_classes = false;
|
|
$context->check_variables = false;
|
|
|
|
return;
|
|
}
|
|
*/
|
|
|
|
if (file_exists($path_to_file)) {
|
|
$include_stmts = FileChecker::getStatementsForFile($path_to_file);
|
|
$old_include_file_name = $this->include_file_name;
|
|
$this->include_file_name = Config::getInstance()->shortenFileName($path_to_file);
|
|
$this->source->setIncludeFileName($this->include_file_name);
|
|
$this->check($include_stmts, $context);
|
|
$this->include_file_name = $old_include_file_name;
|
|
$this->source->setIncludeFileName($old_include_file_name);
|
|
return;
|
|
}
|
|
}
|
|
|
|
$context->check_classes = false;
|
|
$context->check_variables = false;
|
|
$context->check_functions = false;
|
|
}
|
|
|
|
/**
|
|
* Parse a docblock comment into its parts.
|
|
*
|
|
* Taken from advanced api docmaker
|
|
* Which was taken from https://github.com/facebook/libphutil/blob/master/src/parser/docblock/PhutilDocblockParser.php
|
|
*
|
|
* @param string $docblock
|
|
* @return array Array of the main comment and specials
|
|
*/
|
|
public static function parseDocComment($docblock)
|
|
{
|
|
// Strip off comments.
|
|
$docblock = trim($docblock);
|
|
$docblock = preg_replace('@^/\*\*@', '', $docblock);
|
|
$docblock = preg_replace('@\*/$@', '', $docblock);
|
|
$docblock = preg_replace('@^\s*\*@m', '', $docblock);
|
|
|
|
// Normalize multi-line @specials.
|
|
$lines = explode("\n", $docblock);
|
|
$last = false;
|
|
foreach ($lines as $k => $line) {
|
|
if (preg_match('/^\s?@\w/i', $line)) {
|
|
$last = $k;
|
|
} elseif (preg_match('/^\s*$/', $line)) {
|
|
$last = false;
|
|
} elseif ($last !== false) {
|
|
$lines[$last] = rtrim($lines[$last]).' '.trim($line);
|
|
unset($lines[$k]);
|
|
}
|
|
}
|
|
$docblock = implode("\n", $lines);
|
|
|
|
$special = array();
|
|
|
|
// Parse @specials.
|
|
$matches = null;
|
|
$have_specials = preg_match_all('/^\s?@([\w\-:]+)\s*([^\n]*)/m', $docblock, $matches, PREG_SET_ORDER);
|
|
if ($have_specials) {
|
|
$docblock = preg_replace('/^\s?@([\w\-:]+)\s*([^\n]*)/m', '', $docblock);
|
|
foreach ($matches as $match) {
|
|
list($_, $type, $data) = $match;
|
|
|
|
if (empty($special[$type])) {
|
|
$special[$type] = array();
|
|
}
|
|
|
|
$special[$type][] = $data;
|
|
}
|
|
}
|
|
|
|
$docblock = str_replace("\t", ' ', $docblock);
|
|
|
|
// Smush the whole docblock to the left edge.
|
|
$min_indent = 80;
|
|
$indent = 0;
|
|
foreach (array_filter(explode("\n", $docblock)) as $line) {
|
|
for ($ii = 0; $ii < strlen($line); $ii++) {
|
|
if ($line[$ii] != ' ') {
|
|
break;
|
|
}
|
|
$indent++;
|
|
}
|
|
|
|
/** @var int */
|
|
$min_indent = min($indent, $min_indent);
|
|
}
|
|
|
|
$docblock = preg_replace('/^' . str_repeat(' ', $min_indent) . '/m', '', $docblock);
|
|
$docblock = rtrim($docblock);
|
|
|
|
// Trim any empty lines off the front, but leave the indent level if there
|
|
// is one.
|
|
$docblock = preg_replace('/^\s*\n/', '', $docblock);
|
|
|
|
return array('description' => $docblock, 'specials' => $special);
|
|
}
|
|
|
|
/**
|
|
* @param object-like{description:string,specials:array<string,array<string>>} $parsed_doc_comment
|
|
* @return string
|
|
*/
|
|
public static function renderDocComment(array $parsed_doc_comment)
|
|
{
|
|
$doc_comment_text = '/**' . PHP_EOL;
|
|
|
|
$description_lines = null;
|
|
|
|
$trimmed_description = trim($parsed_doc_comment['description']);
|
|
|
|
if (!empty($trimmed_description)) {
|
|
$description_lines = explode(PHP_EOL, $parsed_doc_comment['description']);
|
|
|
|
foreach ($description_lines as $line) {
|
|
$doc_comment_text .= ' * ' . $line . PHP_EOL;
|
|
}
|
|
}
|
|
|
|
if ($description_lines && $parsed_doc_comment['specials']) {
|
|
$doc_comment_text .= ' *' . PHP_EOL;
|
|
}
|
|
|
|
if ($parsed_doc_comment['specials']) {
|
|
$type_lengths = array_map('strlen', array_keys($parsed_doc_comment['specials']));
|
|
/** @var int */
|
|
$type_width = max($type_lengths) + 1;
|
|
|
|
foreach ($parsed_doc_comment['specials'] as $type => $lines) {
|
|
foreach ($lines as $line) {
|
|
$doc_comment_text .= ' * @' . str_pad($type, $type_width) . $line . PHP_EOL;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
$doc_comment_text .= ' */';
|
|
|
|
return $doc_comment_text;
|
|
}
|
|
|
|
/**
|
|
* @param string $method_id
|
|
* @param int $argument_offset
|
|
* @return boolean
|
|
*/
|
|
protected function isPassedByReference($method_id, array $args, $argument_offset)
|
|
{
|
|
$function_params = FunctionLikeChecker::getParamsById($method_id, $args, $this->file_name);
|
|
|
|
return $argument_offset < count($function_params) && $function_params[$argument_offset]->by_ref;
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr $stmt
|
|
* @param string $file_name
|
|
* @return string|null
|
|
*/
|
|
protected static function getPathTo(PhpParser\Node\Expr $stmt, $file_name)
|
|
{
|
|
if ($file_name[0] !== '/') {
|
|
$file_name = getcwd() . '/' . $file_name;
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Scalar\String_) {
|
|
return $stmt->value;
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Concat) {
|
|
$left_string = self::getPathTo($stmt->left, $file_name);
|
|
$right_string = self::getPathTo($stmt->right, $file_name);
|
|
|
|
if ($left_string && $right_string) {
|
|
return $left_string . $right_string;
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\FuncCall &&
|
|
$stmt->name instanceof PhpParser\Node\Name &&
|
|
$stmt->name->parts === ['dirname']) {
|
|
|
|
if ($stmt->args) {
|
|
$evaled_path = self::getPathTo($stmt->args[0]->value, $file_name);
|
|
|
|
if (!$evaled_path) {
|
|
return;
|
|
}
|
|
|
|
return dirname($evaled_path);
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ConstFetch && $stmt->name instanceof PhpParser\Node\Name) {
|
|
$const_name = implode('', $stmt->name->parts);
|
|
|
|
if (defined($const_name)) {
|
|
return constant($const_name);
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\Dir) {
|
|
return dirname($file_name);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\File) {
|
|
return $file_name;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
protected static function resolveIncludePath($file_name, $current_directory)
|
|
{
|
|
$paths = PATH_SEPARATOR == ':' ?
|
|
preg_split('#(?<!phar):#', get_include_path()) :
|
|
explode(PATH_SEPARATOR, get_include_path());
|
|
|
|
foreach ($paths as $prefix) {
|
|
$ds = substr($prefix, -1) == DIRECTORY_SEPARATOR ? '' : DIRECTORY_SEPARATOR;
|
|
|
|
if ($prefix === '.') {
|
|
$prefix = $current_directory;
|
|
}
|
|
|
|
$file = $prefix . $ds . $file_name;
|
|
|
|
if (file_exists($file)) {
|
|
return $file;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static function setMockInterfaces(array $classes)
|
|
{
|
|
self::$mock_interfaces = $classes;
|
|
}
|
|
|
|
/**
|
|
* @param string $absolute_class
|
|
* @return boolean
|
|
*/
|
|
public static function isMock($absolute_class)
|
|
{
|
|
return in_array($absolute_class, Config::getInstance()->getMockClasses());
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
protected static function containsBooleanOr(PhpParser\Node\Expr\BinaryOp $stmt)
|
|
{
|
|
// we only want to discount expressions where either the whole thing is an or
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanOr) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return array<string>
|
|
*/
|
|
public function getAliasedClasses()
|
|
{
|
|
return $this->aliased_classes;
|
|
}
|
|
|
|
/**
|
|
* @param string $method_id
|
|
* @param boolean $include_constructor
|
|
* @return array<string,Type\Union>
|
|
*/
|
|
public static function getThisAssignments($method_id, $include_constructor = false)
|
|
{
|
|
$absolute_class = explode('::', $method_id)[0];
|
|
|
|
/** @var array<string,Type\Union> */
|
|
$this_assignments = [];
|
|
|
|
if ($include_constructor && isset(self::$this_assignments[$absolute_class . '::__construct'])) {
|
|
/** @var array<string,Type\Union> */
|
|
$this_assignments = self::$this_assignments[$absolute_class . '::__construct'];
|
|
}
|
|
|
|
if (isset(self::$this_assignments[$method_id])) {
|
|
/** @var array<string,Type\Union> */
|
|
$this_assignments = TypeChecker::combineKeyedTypes($this_assignments, self::$this_assignments[$method_id]);
|
|
}
|
|
|
|
if (isset(self::$this_calls[$method_id])) {
|
|
foreach (self::$this_calls[$method_id] as $call) {
|
|
$call_assingments = self::getThisAssignments($absolute_class . '::' . $call);
|
|
$this_assignments = TypeChecker::combineKeyedTypes($this_assignments, $call_assingments);
|
|
}
|
|
}
|
|
|
|
return $this_assignments;
|
|
}
|
|
|
|
/**
|
|
* @param PhpParser\Node\Expr $stmt
|
|
* @return PhpParser\Node\Expr|null
|
|
*/
|
|
protected static function getFirstFunctionCall(PhpParser\Node\Expr $stmt)
|
|
{
|
|
if ($stmt instanceof PhpParser\Node\Expr\MethodCall
|
|
|| $stmt instanceof PhpParser\Node\Expr\StaticCall
|
|
|| $stmt instanceof PhpParser\Node\Expr\FuncCall
|
|
) {
|
|
return $stmt;
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
return self::getFirstFunctionCall($stmt->left);
|
|
}
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BooleanNot) {
|
|
return self::getFirstFunctionCall($stmt->expr);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected function isPhantomClass($class_name)
|
|
{
|
|
return isset($this->phantom_classes[$class_name]);
|
|
}
|
|
}
|