2016-10-09 23:54:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psalm;
|
|
|
|
|
|
|
|
class FunctionLikeParameter
|
|
|
|
{
|
|
|
|
/** @var string */
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
public $by_ref;
|
|
|
|
|
|
|
|
/** @var Type\Union */
|
|
|
|
public $type;
|
|
|
|
|
|
|
|
/** @var bool */
|
|
|
|
public $is_optional;
|
|
|
|
|
|
|
|
/** @var bool */
|
|
|
|
public $is_nullable;
|
|
|
|
|
2016-10-10 07:35:12 +02:00
|
|
|
public function __construct($name, $by_ref, $type, $is_optional = true, $is_nullable = false)
|
2016-10-09 23:54:58 +02:00
|
|
|
{
|
|
|
|
$this->name = $name;
|
|
|
|
$this->by_ref = $by_ref;
|
|
|
|
$this->type = $type;
|
|
|
|
$this->is_optional = $is_optional;
|
|
|
|
$this->is_nullable = $is_nullable;
|
|
|
|
}
|
|
|
|
}
|