1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 02:47:02 +01:00
psalm/src/Psalm/Storage/MethodStorage.php

93 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Storage;
use Psalm\Type;
class MethodStorage extends FunctionLikeStorage
{
/**
* @var bool
*/
2019-11-25 21:20:31 +01:00
public $is_static = false;
/**
* @var int
*/
2019-11-25 21:20:31 +01:00
public $visibility = 0;
/**
* @var bool
*/
2019-11-25 21:20:31 +01:00
public $final = false;
/**
* @var bool
*/
public $final_from_docblock = false;
/**
* @var bool
*/
2019-11-25 21:20:31 +01:00
public $abstract = false;
/**
* @var bool
*/
public $overridden_downstream = false;
/**
* @var bool
*/
public $overridden_somewhere = false;
2018-12-21 17:01:24 +01:00
/**
* @var bool
*/
public $inheritdoc = false;
/**
* @var ?bool
*/
public $inherited_return_type = false;
/**
2019-11-25 21:20:31 +01:00
* @var ?string
*/
public $defining_fqcln;
/**
* @var bool
*/
public $has_docblock_param_types = false;
2019-08-30 18:36:35 +02:00
/**
* @var bool
*/
public $external_mutation_free = false;
/**
* @var bool
*/
public $immutable = false;
/**
* @var bool
*/
public $mutation_free_inferred = false;
/**
* @var ?array<string, bool>
*/
public $this_property_mutations = null;
/**
* @var Type\Union|null
*/
public $self_out_type = null;
/**
* @var bool
*/
public $stubbed = false;
}