1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 10:17:33 +01:00
psalm/src/Psalm/FunctionLikeParameter.php

42 lines
880 B
PHP
Raw Normal View History

<?php
namespace Psalm;
class FunctionLikeParameter
{
/** @var string */
public $name;
2016-10-15 06:12:57 +02:00
/** @var bool */
public $by_ref;
/** @var Type\Union */
public $type;
/** @var bool */
public $is_optional;
/** @var bool */
public $is_nullable;
2016-10-15 06:12:57 +02:00
/** @var int */
public $line;
/**
* @param string $name
* @param boolean $by_ref
* @param Type\Union $type
* @param boolean $is_optional
* @param boolean $is_nullable
* @param int $line_number
*/
public function __construct($name, $by_ref, Type\Union $type, $is_optional = true, $is_nullable = false, $line_number = -1)
{
$this->name = $name;
$this->by_ref = $by_ref;
$this->type = $type;
$this->is_optional = $is_optional;
$this->is_nullable = $is_nullable;
}
}