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

17 lines
251 B
PHP
Raw Normal View History

<?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;
}
}