1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 15:09:04 +01:00
psalm/src/Psalm/Internal/Analyzer/Statements/Expression/Assignment/AssignedProperty.php
2021-12-14 02:31:22 +01:00

33 lines
554 B
PHP

<?php
namespace Psalm\Internal\Analyzer\Statements\Expression\Assignment;
use Psalm\Type\Union;
class AssignedProperty
{
/**
* @var Union
*/
public $property_type;
/**
* @var string
*/
public $id;
/**
* @var Union
*/
public $assignment_type;
public function __construct(
Union $property_type,
string $id,
Union $assignment_type
) {
$this->property_type = $property_type;
$this->id = $id;
$this->assignment_type = $assignment_type;
}
}