mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
63 lines
1.2 KiB
PHP
63 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Psalm\Internal\Analyzer;
|
|
|
|
use Psalm\Storage\ImmutableNonCloneableTrait;
|
|
|
|
/**
|
|
* @psalm-immutable
|
|
* @internal
|
|
*/
|
|
final class DataFlowNodeData
|
|
{
|
|
use ImmutableNonCloneableTrait;
|
|
|
|
public int $line_from;
|
|
|
|
public int $line_to;
|
|
|
|
public string $label;
|
|
|
|
public string $file_name;
|
|
|
|
public string $file_path;
|
|
|
|
public string $snippet;
|
|
|
|
public int $from;
|
|
|
|
public int $to;
|
|
|
|
public int $snippet_from;
|
|
|
|
public int $column_from;
|
|
|
|
public int $column_to;
|
|
|
|
public function __construct(
|
|
string $label,
|
|
int $line_from,
|
|
int $line_to,
|
|
string $file_name,
|
|
string $file_path,
|
|
string $snippet,
|
|
int $from,
|
|
int $to,
|
|
int $snippet_from,
|
|
int $column_from,
|
|
int $column_to
|
|
) {
|
|
$this->label = $label;
|
|
$this->line_from = $line_from;
|
|
$this->line_to = $line_to;
|
|
$this->file_name = $file_name;
|
|
$this->file_path = $file_path;
|
|
$this->snippet = $snippet;
|
|
$this->from = $from;
|
|
$this->to = $to;
|
|
$this->snippet_from = $snippet_from;
|
|
$this->column_from = $column_from;
|
|
$this->column_to = $column_to;
|
|
}
|
|
}
|