mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 09:47:29 +01:00
17 lines
251 B
PHP
17 lines
251 B
PHP
<?php
|
|
namespace Psalm;
|
|
|
|
class ReferenceConstraint
|
|
{
|
|
/** @var Type\Union|null */
|
|
public $type;
|
|
|
|
/**
|
|
* @param Type\Union $type
|
|
*/
|
|
public function __construct(Type\Union $type = null)
|
|
{
|
|
$this->type = $type;
|
|
}
|
|
}
|