mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 23:18:40 +01:00
25 lines
368 B
PHP
25 lines
368 B
PHP
<?php
|
|
|
|
namespace Psalm\Internal\Scope;
|
|
|
|
use Psalm\Type\Union;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class FinallyScope
|
|
{
|
|
/**
|
|
* @var array<string, Union>
|
|
*/
|
|
public $vars_in_scope = [];
|
|
|
|
/**
|
|
* @param array<string, Union> $vars_in_scope
|
|
*/
|
|
public function __construct(array $vars_in_scope)
|
|
{
|
|
$this->vars_in_scope = $vars_in_scope;
|
|
}
|
|
}
|