1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/src/Psalm/Internal/Scope/IfConditionalScope.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2019-08-27 04:16:06 +02:00
<?php
namespace Psalm\Internal\Scope;
use Psalm\Context;
/**
* @internal
*/
class IfConditionalScope
{
public $if_context;
public $original_context;
/**
* @var array<string, bool>
*/
public $cond_referenced_var_ids;
/**
* @var array<string, int>
2019-08-27 04:16:06 +02:00
*/
2020-11-07 06:58:20 +01:00
public $assigned_in_conditional_var_ids;
2019-08-27 04:16:06 +02:00
/** @var list<\Psalm\Internal\Clause> */
public $entry_clauses;
2019-08-27 04:16:06 +02:00
/**
* @param array<string, bool> $cond_referenced_var_ids
2020-11-07 06:58:20 +01:00
* @param array<string, int> $assigned_in_conditional_var_ids
* @param list<\Psalm\Internal\Clause> $entry_clauses
2019-08-27 04:16:06 +02:00
*/
public function __construct(
Context $if_context,
Context $original_context,
array $cond_referenced_var_ids,
2020-11-07 06:58:20 +01:00
array $assigned_in_conditional_var_ids,
array $entry_clauses
2019-08-27 04:16:06 +02:00
) {
$this->if_context = $if_context;
$this->original_context = $original_context;
$this->cond_referenced_var_ids = $cond_referenced_var_ids;
2020-11-07 06:58:20 +01:00
$this->assigned_in_conditional_var_ids = $assigned_in_conditional_var_ids;
$this->entry_clauses = $entry_clauses;
2019-08-27 04:16:06 +02:00
}
}