1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/Psalm/ReferenceConstraint.php

17 lines
239 B
PHP

<?php
namespace Psalm;
class ReferenceConstraint
{
/** @var Type\Union */
public $type;
/**
* @param Type\Union $type
*/
public function __construct(Type\Union $type)
{
$this->type = $type;
}
}