1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 09:47:29 +01:00
psalm/src/Psalm/ReferenceConstraint.php
2018-01-25 01:04:26 -05:00

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