1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 15:09:04 +01:00
psalm/src/Psalm/Storage/AttributeArg.php

39 lines
641 B
PHP
Raw Normal View History

<?php
namespace Psalm\Storage;
use Psalm\CodeLocation;
use Psalm\Internal\Scanner\UnresolvedConstantComponent;
2021-06-08 04:55:21 +02:00
use Psalm\Type\Union;
class AttributeArg
{
/**
* @var ?string
*/
public $name;
/**
* @var Union|UnresolvedConstantComponent
*/
public $type;
/**
* @var CodeLocation
*/
public $location;
/**
* @param Union|UnresolvedConstantComponent $type
*/
public function __construct(
?string $name,
$type,
CodeLocation $location
) {
$this->name = $name;
$this->type = $type;
$this->location = $location;
}
}