2018-01-29 00:29:38 +01:00
|
|
|
<?php
|
2018-11-06 03:57:36 +01:00
|
|
|
namespace Psalm\Internal\Analyzer\Statements\Expression\Call;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
use PhpParser;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\MethodAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\ExpressionAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Context;
|
2018-11-12 16:46:55 +01:00
|
|
|
use Psalm\Internal\FileManipulation\FileManipulationBuffer;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\Issue\DeprecatedClass;
|
2018-03-06 18:19:50 +01:00
|
|
|
use Psalm\Issue\InvalidStringClass;
|
2018-12-02 00:37:49 +01:00
|
|
|
use Psalm\Issue\InternalClass;
|
2019-01-02 15:00:45 +01:00
|
|
|
use Psalm\Issue\MixedMethodCall;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\Issue\ParentNotFound;
|
2018-03-06 18:19:50 +01:00
|
|
|
use Psalm\Issue\UndefinedClass;
|
2018-07-22 01:56:26 +02:00
|
|
|
use Psalm\Issue\UndefinedMethod;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\IssueBuffer;
|
2019-01-23 05:42:54 +01:00
|
|
|
use Psalm\Storage\Assertion;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\Type;
|
|
|
|
use Psalm\Type\Atomic\TNamedObject;
|
|
|
|
|
2018-12-02 00:37:49 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
class StaticCallAnalyzer extends \Psalm\Internal\Analyzer\Statements\Expression\CallAnalyzer
|
2018-01-29 00:29:38 +01:00
|
|
|
{
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2018-01-29 00:29:38 +01:00
|
|
|
* @param PhpParser\Node\Expr\StaticCall $stmt
|
|
|
|
* @param Context $context
|
|
|
|
*
|
|
|
|
* @return false|null
|
|
|
|
*/
|
|
|
|
public static function analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2018-01-29 00:29:38 +01:00
|
|
|
PhpParser\Node\Expr\StaticCall $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
|
|
|
$method_id = null;
|
|
|
|
|
|
|
|
$lhs_type = null;
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$file_analyzer = $statements_analyzer->getFileAnalyzer();
|
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
|
|
|
$source = $statements_analyzer->getSource();
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
$stmt->inferredType = null;
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$config = $codebase->config;
|
2018-03-06 17:20:54 +01:00
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
if ($stmt->class instanceof PhpParser\Node\Name) {
|
|
|
|
$fq_class_name = null;
|
|
|
|
|
|
|
|
if (count($stmt->class->parts) === 1
|
|
|
|
&& in_array(strtolower($stmt->class->parts[0]), ['self', 'static', 'parent'], true)
|
|
|
|
) {
|
|
|
|
if ($stmt->class->parts[0] === 'parent') {
|
|
|
|
$child_fq_class_name = $context->self;
|
|
|
|
|
|
|
|
$class_storage = $child_fq_class_name
|
2018-11-06 03:57:36 +01:00
|
|
|
? $codebase->classlike_storage_provider->get($child_fq_class_name)
|
2018-01-29 00:29:38 +01:00
|
|
|
: null;
|
|
|
|
|
|
|
|
if (!$class_storage || !$class_storage->parent_classes) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ParentNotFound(
|
|
|
|
'Cannot call method on parent as this class does not extend another',
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2018-01-29 00:29:38 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-01-29 00:29:38 +01:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$fq_class_name = reset($class_storage->parent_classes);
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($fq_class_name);
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
$fq_class_name = $class_storage->name;
|
2018-07-18 04:50:30 +02:00
|
|
|
} elseif ($context->self) {
|
|
|
|
if ($stmt->class->parts[0] === 'static' && isset($context->vars_in_scope['$this'])) {
|
|
|
|
$fq_class_name = (string) $context->vars_in_scope['$this'];
|
|
|
|
$lhs_type = clone $context->vars_in_scope['$this'];
|
|
|
|
} else {
|
|
|
|
$fq_class_name = $context->self;
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
} else {
|
2018-11-11 18:01:14 +01:00
|
|
|
$namespace = $statements_analyzer->getNamespace()
|
|
|
|
? $statements_analyzer->getNamespace() . '\\'
|
2018-01-29 00:29:38 +01:00
|
|
|
: '';
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$fq_class_name = $namespace . $statements_analyzer->getClassName();
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($context->isPhantomClass($fq_class_name)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} elseif ($context->check_classes) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$aliases = $statements_analyzer->getAliases();
|
2018-10-27 05:04:38 +02:00
|
|
|
|
|
|
|
if ($context->calling_method_id
|
|
|
|
&& !$stmt->class instanceof PhpParser\Node\Name\FullyQualified
|
|
|
|
) {
|
|
|
|
$codebase->file_reference_provider->addReferenceToClassMethod(
|
|
|
|
$context->calling_method_id,
|
2018-11-11 18:01:14 +01:00
|
|
|
'use:' . $stmt->class->parts[0] . ':' . \md5($statements_analyzer->getFilePath())
|
2018-10-27 05:04:38 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$fq_class_name = ClassLikeAnalyzer::getFQCLNFromNameObject(
|
2018-01-29 00:29:38 +01:00
|
|
|
$stmt->class,
|
2018-10-27 05:04:38 +02:00
|
|
|
$aliases
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if ($context->isPhantomClass($fq_class_name)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$does_class_exist = false;
|
|
|
|
|
|
|
|
if ($context->self) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$self_storage = $codebase->classlike_storage_provider->get($context->self);
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
if (isset($self_storage->used_traits[strtolower($fq_class_name)])) {
|
|
|
|
$fq_class_name = $context->self;
|
|
|
|
$does_class_exist = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$does_class_exist) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$does_class_exist = ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-01-29 00:29:38 +01:00
|
|
|
$fq_class_name,
|
|
|
|
new CodeLocation($source, $stmt->class),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
2018-01-29 00:29:38 +01:00
|
|
|
false
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$does_class_exist) {
|
|
|
|
return $does_class_exist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-24 07:33:25 +01:00
|
|
|
if ($codebase->store_node_types && $fq_class_name) {
|
2018-10-26 22:17:15 +02:00
|
|
|
$codebase->analyzer->addNodeReference(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getFilePath(),
|
2018-10-26 22:17:15 +02:00
|
|
|
$stmt->class,
|
|
|
|
$fq_class_name
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-07-18 04:50:30 +02:00
|
|
|
if ($fq_class_name && !$lhs_type) {
|
2018-01-29 00:29:38 +01:00
|
|
|
$lhs_type = new Type\Union([new TNamedObject($fq_class_name)]);
|
|
|
|
}
|
|
|
|
} else {
|
2018-11-11 18:01:14 +01:00
|
|
|
ExpressionAnalyzer::analyze($statements_analyzer, $stmt->class, $context);
|
2018-01-29 00:29:38 +01:00
|
|
|
$lhs_type = $stmt->class->inferredType;
|
|
|
|
}
|
|
|
|
|
2019-01-23 21:50:12 +01:00
|
|
|
if (!$lhs_type) {
|
2018-06-26 01:38:15 +02:00
|
|
|
if (self::checkFunctionArguments(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-06-26 01:38:15 +02:00
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_mock = false;
|
|
|
|
|
|
|
|
foreach ($lhs_type->getTypes() as $lhs_type_part) {
|
2019-01-20 05:25:23 +01:00
|
|
|
$intersection_types = [];
|
|
|
|
|
2019-01-02 15:00:45 +01:00
|
|
|
if ($lhs_type_part instanceof TNamedObject) {
|
|
|
|
$fq_class_name = $lhs_type_part->value;
|
2019-01-20 05:25:23 +01:00
|
|
|
|
2019-01-28 07:12:41 +01:00
|
|
|
if (!ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
|
|
|
|
$statements_analyzer,
|
|
|
|
$fq_class_name,
|
|
|
|
new CodeLocation($source, $stmt->class),
|
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
|
|
|
false
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-20 05:25:23 +01:00
|
|
|
$intersection_types = $lhs_type_part->extra_types;
|
2019-01-02 15:00:45 +01:00
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TClassString
|
2019-01-20 04:45:58 +01:00
|
|
|
&& $lhs_type_part->as_type
|
2019-01-02 15:00:45 +01:00
|
|
|
) {
|
2019-01-20 04:45:58 +01:00
|
|
|
$fq_class_name = $lhs_type_part->as_type->value;
|
2019-01-20 05:25:23 +01:00
|
|
|
|
2019-01-28 07:12:41 +01:00
|
|
|
if (!ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
|
|
|
|
$statements_analyzer,
|
|
|
|
$fq_class_name,
|
|
|
|
new CodeLocation($source, $stmt->class),
|
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
|
|
|
false
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-20 05:25:23 +01:00
|
|
|
$intersection_types = $lhs_type_part->as_type->extra_types;
|
2019-01-02 15:00:45 +01:00
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TLiteralClassString) {
|
|
|
|
$fq_class_name = $lhs_type_part->value;
|
2019-01-28 07:12:41 +01:00
|
|
|
|
|
|
|
if (!ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
|
|
|
|
$statements_analyzer,
|
|
|
|
$fq_class_name,
|
|
|
|
new CodeLocation($source, $stmt->class),
|
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
|
|
|
false
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-02-22 03:40:06 +01:00
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TTemplateParam
|
2019-01-05 06:15:53 +01:00
|
|
|
&& !$lhs_type_part->as->isMixed()
|
|
|
|
&& !$lhs_type_part->as->hasObject()
|
2019-01-02 15:00:45 +01:00
|
|
|
) {
|
2019-01-05 06:15:53 +01:00
|
|
|
$fq_class_name = null;
|
|
|
|
|
|
|
|
foreach ($lhs_type_part->as->getTypes() as $generic_param_type) {
|
|
|
|
if (!$generic_param_type instanceof TNamedObject) {
|
|
|
|
continue 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fq_class_name = $generic_param_type->value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$fq_class_name) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedClass(
|
|
|
|
'Type ' . $lhs_type_part->as . ' cannot be called as a class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
(string) $lhs_type_part
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
2019-01-02 15:00:45 +01:00
|
|
|
} else {
|
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TMixed
|
2019-02-22 03:40:06 +01:00
|
|
|
|| $lhs_type_part instanceof Type\Atomic\TTemplateParam
|
2019-01-02 15:00:45 +01:00
|
|
|
|| $lhs_type_part instanceof Type\Atomic\TClassString
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedMethodCall(
|
2019-01-20 04:45:58 +01:00
|
|
|
'Cannot call method on an unknown class',
|
2019-01-02 15:00:45 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2018-03-06 17:20:54 +01:00
|
|
|
|
2018-05-21 18:40:39 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-03-06 17:20:54 +01:00
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TString) {
|
|
|
|
if ($config->allow_string_standin_for_class
|
|
|
|
&& !$lhs_type_part instanceof Type\Atomic\TNumericString
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-03-06 18:19:50 +01:00
|
|
|
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidStringClass(
|
|
|
|
'String cannot be used as a class',
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2018-03-06 18:19:50 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-03-06 18:19:50 +01:00
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-03-06 20:11:32 +01:00
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TNull
|
|
|
|
&& $lhs_type->ignore_nullable_issues
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-03-06 17:20:54 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-06 18:19:50 +01:00
|
|
|
new UndefinedClass(
|
2018-03-06 17:20:54 +01:00
|
|
|
'Type ' . $lhs_type_part . ' cannot be called as a class',
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
2018-03-21 15:17:57 +01:00
|
|
|
(string) $lhs_type_part
|
2018-03-06 17:20:54 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-03-06 17:20:54 +01:00
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-12-21 17:39:28 +01:00
|
|
|
$fq_class_name = $codebase->classlikes->getUnAliasedName($fq_class_name);
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$is_mock = ExpressionAnalyzer::isMock($fq_class_name);
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
$has_mock = $has_mock || $is_mock;
|
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
if ($stmt->name instanceof PhpParser\Node\Identifier && !$is_mock) {
|
2019-01-18 17:37:52 +01:00
|
|
|
$method_name_lc = strtolower($stmt->name->name);
|
|
|
|
$method_id = $fq_class_name . '::' . $method_name_lc;
|
2018-04-17 18:16:25 +02:00
|
|
|
$cased_method_id = $fq_class_name . '::' . $stmt->name->name;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
$args = $stmt->args;
|
|
|
|
|
2019-01-20 05:25:23 +01:00
|
|
|
if ($intersection_types
|
|
|
|
&& !$codebase->methods->methodExists($method_id)
|
|
|
|
) {
|
|
|
|
foreach ($intersection_types as $intersection_type) {
|
|
|
|
if (!$intersection_type instanceof TNamedObject) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$intersection_method_id = $intersection_type->value . '::' . $method_name_lc;
|
|
|
|
|
|
|
|
if ($codebase->methods->methodExists($intersection_method_id)) {
|
|
|
|
$method_id = $intersection_method_id;
|
|
|
|
$fq_class_name = $intersection_type->value;
|
|
|
|
$cased_method_id = $fq_class_name . '::' . $stmt->name->name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
if (!$codebase->methods->methodExists($method_id)
|
2018-11-06 03:57:36 +01:00
|
|
|
|| !MethodAnalyzer::isMethodVisible(
|
2018-09-26 00:37:24 +02:00
|
|
|
$method_id,
|
|
|
|
$context->self,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSource()
|
2018-09-26 00:37:24 +02:00
|
|
|
)
|
|
|
|
) {
|
|
|
|
if ($codebase->methods->methodExists(
|
|
|
|
$fq_class_name . '::__callStatic',
|
|
|
|
$context->calling_method_id
|
|
|
|
)) {
|
2019-01-18 17:37:52 +01:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($fq_class_name);
|
|
|
|
|
|
|
|
if (isset($class_storage->pseudo_static_methods[$method_name_lc])) {
|
|
|
|
$pseudo_method_storage = $class_storage->pseudo_static_methods[$method_name_lc];
|
|
|
|
|
|
|
|
if (self::checkFunctionArguments(
|
|
|
|
$statements_analyzer,
|
|
|
|
$args,
|
|
|
|
$pseudo_method_storage->params,
|
|
|
|
$method_id,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$generic_params = [];
|
|
|
|
|
|
|
|
if (self::checkFunctionLikeArgumentsMatch(
|
|
|
|
$statements_analyzer,
|
|
|
|
$args,
|
|
|
|
null,
|
|
|
|
$pseudo_method_storage->params,
|
|
|
|
$pseudo_method_storage,
|
|
|
|
null,
|
|
|
|
$generic_params,
|
|
|
|
new CodeLocation($source, $stmt),
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($pseudo_method_storage->return_type) {
|
|
|
|
$return_type_candidate = clone $pseudo_method_storage->return_type;
|
|
|
|
|
2019-01-30 15:46:23 +01:00
|
|
|
$return_type_candidate = ExpressionAnalyzer::fleshOutType(
|
|
|
|
$codebase,
|
|
|
|
$return_type_candidate,
|
|
|
|
$fq_class_name,
|
|
|
|
$fq_class_name
|
|
|
|
);
|
|
|
|
|
2019-01-18 17:37:52 +01:00
|
|
|
if (!isset($stmt->inferredType)) {
|
|
|
|
$stmt->inferredType = $return_type_candidate;
|
|
|
|
} else {
|
|
|
|
$stmt->inferredType = Type::combineUnionTypes(
|
|
|
|
$return_type_candidate,
|
|
|
|
$stmt->inferredType
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self::checkFunctionArguments(
|
|
|
|
$statements_analyzer,
|
|
|
|
$args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 00:37:24 +02:00
|
|
|
$array_values = array_map(
|
|
|
|
/**
|
|
|
|
* @return PhpParser\Node\Expr\ArrayItem
|
|
|
|
*/
|
|
|
|
function (PhpParser\Node\Arg $arg) {
|
|
|
|
return new PhpParser\Node\Expr\ArrayItem($arg->value);
|
|
|
|
},
|
|
|
|
$args
|
|
|
|
);
|
|
|
|
|
|
|
|
$args = [
|
|
|
|
new PhpParser\Node\Arg(new PhpParser\Node\Scalar\String_($method_id)),
|
|
|
|
new PhpParser\Node\Arg(new PhpParser\Node\Expr\Array_($array_values)),
|
|
|
|
];
|
|
|
|
|
|
|
|
$method_id = $fq_class_name . '::__callstatic';
|
|
|
|
}
|
2019-01-23 21:50:12 +01:00
|
|
|
|
|
|
|
if (!$context->check_methods) {
|
|
|
|
if (self::checkFunctionArguments(
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2018-09-26 00:37:24 +02:00
|
|
|
}
|
2018-06-19 22:14:51 +02:00
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$does_method_exist = MethodAnalyzer::checkMethodExists(
|
|
|
|
$codebase,
|
2019-01-20 05:25:23 +01:00
|
|
|
$method_id,
|
2018-01-29 00:29:38 +01:00
|
|
|
new CodeLocation($source, $stmt),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
2018-09-26 00:37:24 +02:00
|
|
|
$context->calling_method_id
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if (!$does_method_exist) {
|
2019-03-01 05:59:17 +01:00
|
|
|
if (self::checkFunctionArguments(
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-01 05:46:11 +01:00
|
|
|
return;
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($fq_class_name);
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2019-02-10 21:01:10 +01:00
|
|
|
if ($class_storage->user_defined
|
|
|
|
&& $context->self
|
|
|
|
&& ($context->collect_mutations || $context->collect_initializations)
|
|
|
|
) {
|
|
|
|
$appearing_method_id = $codebase->getAppearingMethodId($method_id);
|
|
|
|
|
|
|
|
if (!$appearing_method_id) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedMethod(
|
|
|
|
'Method ' . $method_id . ' does not exist',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$method_id
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
list($appearing_method_class_name) = explode('::', $appearing_method_id);
|
|
|
|
|
|
|
|
if ($codebase->classExtends($context->self, $appearing_method_class_name)) {
|
|
|
|
$old_context_include_location = $context->include_location;
|
|
|
|
$old_self = $context->self;
|
|
|
|
$context->include_location = new CodeLocation($statements_analyzer->getSource(), $stmt);
|
|
|
|
$context->self = $appearing_method_class_name;
|
|
|
|
|
|
|
|
if ($context->collect_mutations) {
|
|
|
|
$file_analyzer->getMethodMutations($method_id, $context);
|
|
|
|
} else {
|
|
|
|
// collecting initializations
|
|
|
|
$local_vars_in_scope = [];
|
|
|
|
$local_vars_possibly_in_scope = [];
|
|
|
|
|
|
|
|
foreach ($context->vars_in_scope as $var => $_) {
|
|
|
|
if (strpos($var, '$this->') !== 0 && $var !== '$this') {
|
|
|
|
$local_vars_in_scope[$var] = $context->vars_in_scope[$var];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($context->vars_possibly_in_scope as $var => $_) {
|
|
|
|
if (strpos($var, '$this->') !== 0 && $var !== '$this') {
|
|
|
|
$local_vars_possibly_in_scope[$var] = $context->vars_possibly_in_scope[$var];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($context->initialized_methods[$method_id])) {
|
|
|
|
if ($context->initialized_methods === null) {
|
|
|
|
$context->initialized_methods = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->initialized_methods[$method_id] = true;
|
|
|
|
|
|
|
|
$file_analyzer->getMethodMutations($method_id, $context);
|
|
|
|
|
|
|
|
foreach ($local_vars_in_scope as $var => $type) {
|
|
|
|
$context->vars_in_scope[$var] = $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($local_vars_possibly_in_scope as $var => $type) {
|
|
|
|
$context->vars_possibly_in_scope[$var] = $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->include_location = $old_context_include_location;
|
|
|
|
$context->self = $old_self;
|
|
|
|
|
|
|
|
if (isset($context->vars_in_scope['$this']) && $old_self) {
|
|
|
|
$context->vars_in_scope['$this'] = Type::parseString($old_self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
if ($class_storage->deprecated) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new DeprecatedClass(
|
|
|
|
$fq_class_name . ' is marked deprecated',
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2018-01-29 00:29:38 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-01-29 00:29:38 +01:00
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-02 00:37:49 +01:00
|
|
|
if ($class_storage->internal
|
|
|
|
&& $context->self
|
|
|
|
&& !$context->collect_initializations
|
|
|
|
&& !$context->collect_mutations
|
|
|
|
) {
|
|
|
|
$self_root = preg_replace('/^([^\\\]+).*/', '$1', $context->self);
|
|
|
|
$declaring_root = preg_replace('/^([^\\\]+).*/', '$1', $fq_class_name);
|
|
|
|
|
|
|
|
if (strtolower($self_root) !== strtolower($declaring_root)) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InternalClass(
|
|
|
|
$fq_class_name . ' is marked internal',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
if (MethodAnalyzer::checkMethodVisibility(
|
2018-01-29 00:29:38 +01:00
|
|
|
$method_id,
|
|
|
|
$context->self,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSource(),
|
2018-01-29 00:29:38 +01:00
|
|
|
new CodeLocation($source, $stmt),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-01-29 00:29:38 +01:00
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-17 23:48:13 +01:00
|
|
|
if ((!$stmt->class instanceof PhpParser\Node\Name
|
|
|
|
|| $stmt->class->parts[0] !== 'parent'
|
|
|
|
|| $statements_analyzer->isStatic())
|
2018-01-29 00:29:38 +01:00
|
|
|
&& (
|
|
|
|
!$context->self
|
2018-11-11 18:01:14 +01:00
|
|
|
|| $statements_analyzer->isStatic()
|
2018-02-01 06:50:01 +01:00
|
|
|
|| !$codebase->classExtends($context->self, $fq_class_name)
|
2018-01-29 00:29:38 +01:00
|
|
|
)
|
|
|
|
) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if (MethodAnalyzer::checkStatic(
|
2018-01-29 00:29:38 +01:00
|
|
|
$method_id,
|
2018-12-17 23:48:13 +01:00
|
|
|
($stmt->class instanceof PhpParser\Node\Name
|
|
|
|
&& strtolower($stmt->class->parts[0]) === 'self')
|
|
|
|
|| $context->self === $fq_class_name,
|
2018-11-11 18:01:14 +01:00
|
|
|
!$statements_analyzer->isStatic(),
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase,
|
2018-01-29 00:29:38 +01:00
|
|
|
new CodeLocation($source, $stmt),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
2018-06-04 01:11:07 +02:00
|
|
|
$is_dynamic_this_method
|
2018-01-29 00:29:38 +01:00
|
|
|
) === false) {
|
|
|
|
// fall through
|
|
|
|
}
|
2018-06-04 01:11:07 +02:00
|
|
|
|
|
|
|
if ($is_dynamic_this_method) {
|
|
|
|
$fake_method_call_expr = new PhpParser\Node\Expr\MethodCall(
|
|
|
|
new PhpParser\Node\Expr\Variable(
|
|
|
|
'this',
|
|
|
|
$stmt->class->getAttributes()
|
|
|
|
),
|
|
|
|
$stmt->name,
|
|
|
|
$stmt->args,
|
|
|
|
$stmt->getAttributes()
|
|
|
|
);
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
if (MethodCallAnalyzer::analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-06-04 01:11:07 +02:00
|
|
|
$fake_method_call_expr,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($fake_method_call_expr->inferredType)) {
|
|
|
|
$stmt->inferredType = $fake_method_call_expr->inferredType;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
|
2018-12-02 00:37:49 +01:00
|
|
|
if (MethodAnalyzer::checkMethodNotDeprecatedOrInternal(
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase,
|
2018-12-02 00:37:49 +01:00
|
|
|
$context,
|
2018-01-29 00:29:38 +01:00
|
|
|
$method_id,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-01-29 00:29:38 +01:00
|
|
|
) === false) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
2019-02-04 06:52:31 +01:00
|
|
|
$found_generic_params = MethodCallAnalyzer::getClassTemplateParams(
|
|
|
|
$codebase,
|
|
|
|
$class_storage,
|
|
|
|
$stmt->class instanceof PhpParser\Node\Name
|
|
|
|
&& $stmt->class->parts === ['parent']
|
|
|
|
&& $context->self
|
|
|
|
? $context->self
|
|
|
|
: $fq_class_name,
|
|
|
|
$method_name_lc,
|
|
|
|
$lhs_type_part,
|
|
|
|
null
|
|
|
|
);
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
if (self::checkMethodArgs(
|
|
|
|
$method_id,
|
2018-09-26 00:37:24 +02:00
|
|
|
$args,
|
2018-01-29 00:29:38 +01:00
|
|
|
$found_generic_params,
|
|
|
|
$context,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$statements_analyzer
|
2018-01-29 00:29:38 +01:00
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fq_class_name = $stmt->class instanceof PhpParser\Node\Name && $stmt->class->parts === ['parent']
|
2018-11-11 18:01:14 +01:00
|
|
|
? (string) $statements_analyzer->getFQCLN()
|
2018-01-29 00:29:38 +01:00
|
|
|
: $fq_class_name;
|
|
|
|
|
|
|
|
$self_fq_class_name = $fq_class_name;
|
|
|
|
|
2019-02-27 23:06:44 +01:00
|
|
|
$return_type_candidate = null;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2019-02-27 23:06:44 +01:00
|
|
|
if ($codebase->methods->return_type_provider->has($fq_class_name)) {
|
2019-02-16 17:16:52 +01:00
|
|
|
$return_type_candidate = $codebase->methods->return_type_provider->getReturnType(
|
|
|
|
$statements_analyzer,
|
2019-02-27 23:06:44 +01:00
|
|
|
$fq_class_name,
|
|
|
|
$stmt->name->name,
|
2019-02-16 17:16:52 +01:00
|
|
|
$stmt->args,
|
|
|
|
$context,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt->name)
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
2019-02-27 23:06:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$return_type_candidate) {
|
2019-02-16 17:16:52 +01:00
|
|
|
$return_type_candidate = $codebase->methods->getMethodReturnType(
|
2018-01-29 00:29:38 +01:00
|
|
|
$method_id,
|
2019-02-16 17:16:52 +01:00
|
|
|
$self_fq_class_name,
|
|
|
|
$args
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
|
|
|
|
2019-02-16 17:16:52 +01:00
|
|
|
if ($return_type_candidate) {
|
|
|
|
$return_type_candidate = clone $return_type_candidate;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2019-02-16 17:16:52 +01:00
|
|
|
if ($found_generic_params) {
|
|
|
|
$return_type_candidate->replaceTemplateTypesWithArgTypes(
|
|
|
|
$found_generic_params
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$return_type_candidate = ExpressionAnalyzer::fleshOutType(
|
|
|
|
$codebase,
|
|
|
|
$return_type_candidate,
|
|
|
|
$self_fq_class_name,
|
|
|
|
$fq_class_name
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
2019-02-16 17:16:52 +01:00
|
|
|
|
|
|
|
$return_type_location = $codebase->methods->getMethodReturnTypeLocation(
|
|
|
|
$method_id,
|
|
|
|
$secondary_return_type_location
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($secondary_return_type_location) {
|
|
|
|
$return_type_location = $secondary_return_type_location;
|
|
|
|
}
|
|
|
|
|
|
|
|
// only check the type locally if it's defined externally
|
|
|
|
if ($return_type_location && !$config->isInProjectDirs($return_type_location->file_path)) {
|
|
|
|
$return_type_candidate->check(
|
|
|
|
$statements_analyzer,
|
|
|
|
new CodeLocation($source, $stmt),
|
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
|
|
|
$context->phantom_classes
|
|
|
|
);
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-27 17:47:27 +02:00
|
|
|
$method_storage = $codebase->methods->getUserMethodStorage($method_id);
|
2018-07-11 17:32:12 +02:00
|
|
|
|
2018-10-27 17:47:27 +02:00
|
|
|
if ($method_storage) {
|
2018-07-11 18:05:50 +02:00
|
|
|
if ($method_storage->assertions) {
|
|
|
|
self::applyAssertionsToContext(
|
2018-11-14 18:25:17 +01:00
|
|
|
$stmt->name,
|
2018-07-11 18:05:50 +02:00
|
|
|
$method_storage->assertions,
|
|
|
|
$stmt->args,
|
2018-11-16 00:50:08 +01:00
|
|
|
$found_generic_params ?: [],
|
2018-07-11 18:05:50 +02:00
|
|
|
$context,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer
|
2018-07-11 18:05:50 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($method_storage->if_true_assertions) {
|
2019-01-23 05:42:54 +01:00
|
|
|
$stmt->ifTrueAssertions = array_map(
|
|
|
|
function (Assertion $assertion) use ($found_generic_params) : Assertion {
|
|
|
|
return $assertion->getUntemplatedCopy($found_generic_params ?: []);
|
|
|
|
},
|
|
|
|
$method_storage->if_true_assertions
|
|
|
|
);
|
2018-07-11 18:05:50 +02:00
|
|
|
}
|
2018-07-11 17:32:12 +02:00
|
|
|
|
2018-07-11 18:05:50 +02:00
|
|
|
if ($method_storage->if_false_assertions) {
|
2019-01-23 05:42:54 +01:00
|
|
|
$stmt->ifFalseAssertions = array_map(
|
|
|
|
function (Assertion $assertion) use ($found_generic_params) : Assertion {
|
|
|
|
return $assertion->getUntemplatedCopy($found_generic_params ?: []);
|
|
|
|
},
|
|
|
|
$method_storage->if_false_assertions
|
|
|
|
);
|
2018-07-11 18:05:50 +02:00
|
|
|
}
|
2018-07-11 17:32:12 +02:00
|
|
|
}
|
|
|
|
|
2018-02-12 04:49:19 +01:00
|
|
|
if ($config->after_method_checks) {
|
|
|
|
$file_manipulations = [];
|
|
|
|
|
2019-02-27 23:06:44 +01:00
|
|
|
$appearing_method_id = $codebase->methods->getAppearingMethodId($method_id);
|
|
|
|
$declaring_method_id = $codebase->methods->getDeclaringMethodId($method_id);
|
|
|
|
|
2018-11-23 19:24:35 +01:00
|
|
|
if ($appearing_method_id && $declaring_method_id) {
|
|
|
|
foreach ($config->after_method_checks as $plugin_fq_class_name) {
|
|
|
|
$plugin_fq_class_name::afterMethodCallAnalysis(
|
|
|
|
$stmt,
|
|
|
|
$method_id,
|
|
|
|
$appearing_method_id,
|
|
|
|
$declaring_method_id,
|
|
|
|
$context,
|
|
|
|
$source,
|
|
|
|
$codebase,
|
|
|
|
$file_manipulations,
|
|
|
|
$return_type_candidate
|
|
|
|
);
|
|
|
|
}
|
2018-02-12 04:49:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($file_manipulations) {
|
|
|
|
/** @psalm-suppress MixedTypeCoercion */
|
2018-11-11 18:01:14 +01:00
|
|
|
FileManipulationBuffer::add($statements_analyzer->getFilePath(), $file_manipulations);
|
2018-02-12 04:49:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
if ($return_type_candidate) {
|
|
|
|
if (isset($stmt->inferredType)) {
|
|
|
|
$stmt->inferredType = Type::combineUnionTypes($stmt->inferredType, $return_type_candidate);
|
|
|
|
} else {
|
|
|
|
$stmt->inferredType = $return_type_candidate;
|
|
|
|
}
|
|
|
|
}
|
2018-06-27 05:11:16 +02:00
|
|
|
} else {
|
|
|
|
if (self::checkFunctionArguments(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-06-27 05:11:16 +02:00
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$context
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
2018-10-26 22:17:15 +02:00
|
|
|
|
2019-02-24 07:33:25 +01:00
|
|
|
if ($codebase->store_node_types && $method_id) {
|
2018-10-26 22:17:15 +02:00
|
|
|
/** @psalm-suppress PossiblyInvalidArgument never a string, PHP Parser bug */
|
|
|
|
$codebase->analyzer->addNodeReference(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getFilePath(),
|
2018-10-26 22:17:15 +02:00
|
|
|
$stmt->name,
|
|
|
|
$method_id . '()'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-24 07:33:25 +01:00
|
|
|
if ($codebase->store_node_types
|
2018-10-26 22:17:15 +02:00
|
|
|
&& (!$context->collect_initializations
|
|
|
|
&& !$context->collect_mutations)
|
|
|
|
&& isset($stmt->inferredType)
|
|
|
|
) {
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument never a string, PHP Parser bug */
|
|
|
|
$codebase->analyzer->addNodeType(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getFilePath(),
|
2018-10-26 22:17:15 +02:00
|
|
|
$stmt->name,
|
|
|
|
(string) $stmt->inferredType
|
|
|
|
);
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($method_id === null) {
|
|
|
|
return self::checkMethodArgs(
|
|
|
|
$method_id,
|
|
|
|
$stmt->args,
|
|
|
|
$found_generic_params,
|
|
|
|
$context,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$statements_analyzer
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$config->remember_property_assignments_after_call && !$context->collect_initializations) {
|
|
|
|
$context->removeAllObjectVars();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|