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

18 lines
229 B
PHP
Raw Normal View History

<?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 = [];
}