1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/src/Psalm/Storage/MethodStorage.php
2020-06-18 21:55:43 +00:00

81 lines
1.1 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;
/**
* @var ?string
*/
public $plain_getter = null;
/**
* @var Type\Union|null
*/
public $self_out_type = null;
}