1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 09:47:29 +01:00
psalm/src/Psalm/Storage/FileStorage.php

80 lines
1.3 KiB
PHP

<?php
namespace Psalm\Storage;
class FileStorage
{
/**
* @var array<string, string>
*/
public $classlikes_in_file = [];
/**
* @var array<string>
*/
public $referenced_classlikes = [];
/**
* @var array<string>
*/
public $required_classes = [];
/**
* @var array<string>
*/
public $required_interfaces = [];
/**
* @var bool
*/
public $has_trait = false;
/** @var string */
public $file_path;
/**
* @var array<string, FunctionLikeStorage>
*/
public $functions = [];
/** @var array<string, string> */
public $declaring_function_ids = [];
/**
* @var array<string, \Psalm\Type\Union>
*/
public $constants = [];
/** @var array<string, string> */
public $declaring_constants = [];
/** @var array<string, string> */
public $included_file_paths = [];
/** @var bool */
public $populated = false;
/** @var bool */
public $deep_scan = false;
/** @var bool */
public $has_extra_statements = false;
/**
* @var string
*/
public $hash = '';
/**
* @var bool
*/
public $has_visitor_issues = false;
/**
* @param string $file_path
*/
public function __construct($file_path)
{
$this->file_path = $file_path;
}
}