1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-11 07:31:45 +01:00
psalm/src/Psalm/Internal/Scope/CaseScope.php
2020-11-21 17:39:40 -05:00

32 lines
467 B
PHP

<?php
namespace Psalm\Internal\Scope;
use Psalm\Context;
use Psalm\Type;
/**
* @internal
*/
class CaseScope
{
/**
* @var Context
*/
public $parent_context;
/**
* @var array<string, Type\Union>|null
*/
public $break_vars;
public function __construct(Context $parent_context)
{
$this->parent_context = $parent_context;
}
public function __destruct()
{
$this->parent_context = null;
}
}