1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-16 11:26:55 +01:00
psalm/src/Psalm/Storage/MethodStorage.php
2019-11-25 15:20:31 -05:00

71 lines
1.0 KiB
PHP

<?php
namespace Psalm\Storage;
class MethodStorage extends FunctionLikeStorage
{
/**
* @var bool
*/
public $is_static = false;
/**
* @var int
*/
public $visibility = 0;
/**
* @var bool
*/
public $final = false;
/**
* @var bool
*/
public $abstract = false;
/**
* @var bool
*/
public $overridden_downstream = false;
/**
* @var bool
*/
public $overridden_somewhere = false;
/**
* @var bool
*/
public $inheritdoc = false;
/**
* @var bool
*/
public $inherited_return_type = false;
/**
* @var ?string
*/
public $defining_fqcln;
/**
* @var bool
*/
public $has_docblock_param_types = false;
/**
* @var bool
*/
public $external_mutation_free = false;
/**
* @var bool
*/
public $mutation_free_inferred = false;
/**
* @var ?array<string, bool>
*/
public $this_property_mutations = null;
}