1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/Psalm/FunctionLikeParameter.php
Matthew Brown a1acbfec07 Show code snippets when reporting errors
This also introduces a new method of identifying specific code locations when creating issues
2016-12-03 19:11:30 -05:00

74 lines
1.3 KiB
PHP

<?php
namespace Psalm;
class FunctionLikeParameter
{
/**
* @var string
*/
public $name;
/**
* @var bool
*/
public $by_ref;
/**
* @var Type\Union
*/
public $type;
/**
* @var Type\Union
*/
public $signature_type;
/**
* @var bool
*/
public $is_optional;
/**
* @var bool
*/
public $is_nullable;
/**
* @var CodeLocation|null
*/
public $code_location;
/**
* @var bool
*/
public $is_variadic;
/**
* @param string $name
* @param boolean $by_ref
* @param Type\Union $type
* @param CodeLocation $code_location
* @param boolean $is_optional
* @param boolean $is_nullable
* @param boolean $is_variadic
*/
public function __construct(
$name,
$by_ref,
Type\Union $type,
CodeLocation $code_location = null,
$is_optional = true,
$is_nullable = false,
$is_variadic = false
) {
$this->name = $name;
$this->by_ref = $by_ref;
$this->type = $type;
$this->signature_type = $type;
$this->is_optional = $is_optional;
$this->is_nullable = $is_nullable;
$this->is_variadic = $is_variadic;
$this->code_location = $code_location;
}
}