mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 19:07:00 +01:00
18 lines
229 B
PHP
18 lines
229 B
PHP
|
<?php
|
||
|
namespace Psalm\Internal\Scope;
|
||
|
|
||
|
use Psalm\CodeLocation;
|
||
|
use Psalm\Context;
|
||
|
use Psalm\Type;
|
||
|
|
||
|
/**
|
||
|
* @internal
|
||
|
*/
|
||
|
class FinallyScope
|
||
|
{
|
||
|
/**
|
||
|
* @var array<string, Type\Union>
|
||
|
*/
|
||
|
public $vars_in_scope = [];
|
||
|
}
|