1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/src/Psalm/FunctionLikeParameter.php
2017-05-26 20:16:18 -04:00

80 lines
1.4 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 $location;
/**
* @var CodeLocation|null
*/
public $signature_location;
/**
* @var bool
*/
public $is_variadic;
/**
* @param string $name
* @param bool $by_ref
* @param Type\Union $type
* @param CodeLocation $location
* @param bool $is_optional
* @param bool $is_nullable
* @param bool $is_variadic
*/
public function __construct(
$name,
$by_ref,
Type\Union $type,
CodeLocation $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->location = $location;
$this->signature_location = $location;
}
}