1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 02:47:02 +01:00
psalm/src/Psalm/FunctionLikeParameter.php
Jon Ursenbach 27c2db1d1d PSR-2
2016-11-02 17:50:54 -04:00

71 lines
1.2 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 int
*/
public $line;
/**
* @var bool
*/
public $is_variadic;
/**
* @param string $name
* @param boolean $by_ref
* @param Type\Union $type
* @param boolean $is_optional
* @param boolean $is_nullable
* @param boolean $is_variadic
*/
public function __construct(
$name,
$by_ref,
Type\Union $type,
$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;
}
}