1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 06:58:41 +01:00
psalm/src/Psalm/Internal/Analyzer/Statements/Expression/Assignment/AssignedProperty.php
2022-12-13 20:46:43 -06:00

28 lines
492 B
PHP

<?php
namespace Psalm\Internal\Analyzer\Statements\Expression\Assignment;
use Psalm\Type\Union;
/**
* @internal
*/
class AssignedProperty
{
public Union $property_type;
public string $id;
public Union $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;
}
}