2016-12-30 18:41:14 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Storage;
|
|
|
|
|
|
|
|
class FileStorage
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var array<int, string>
|
|
|
|
*/
|
2016-12-31 00:08:07 +01:00
|
|
|
public $classes_in_file = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<FunctionLikeStorage>
|
|
|
|
*/
|
|
|
|
public $functions = [];
|
2016-12-30 18:41:14 +01:00
|
|
|
}
|