1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 17:27:28 +01:00
psalm/src/Psalm/Output.php

57 lines
1.7 KiB
PHP
Raw Normal View History

<?php
namespace Psalm;
abstract class Output
{
/**
* @var array<int, array{severity: string, line_from: int, line_to: int, type: string, message: string,
* file_name: string, file_path: string, snippet: string, from: int, to: int,
* snippet_from: int, snippet_to: int, column_from: int, column_to: int, selected_text: string}>
*/
protected $issues_data;
/** @var bool */
protected $use_color;
/** @var bool */
protected $show_snippet;
/** @var bool */
protected $show_info;
2019-05-11 00:07:13 +02:00
/** @var int */
protected $mixed_expression_count;
/** @var int */
protected $total_expression_count;
/**
* @param array<int, array{severity: string, line_from: int, line_to: int, type: string, message: string,
* file_name: string, file_path: string, snippet: string, from: int, to: int,
* snippet_from: int, snippet_to: int, column_from: int, column_to: int, selected_text: string}> $issues_data
* @param bool $use_color
* @param bool $show_snippet
* @param bool $show_info
*/
2019-05-11 00:07:13 +02:00
public function __construct(
array $issues_data,
bool $use_color,
bool $show_snippet = true,
bool $show_info = true,
int $mixed_expression_count = 1,
int $total_expression_count = 1
) {
$this->issues_data = $issues_data;
$this->use_color = $use_color;
$this->show_snippet = $show_snippet;
$this->show_info = $show_info;
2019-05-11 00:07:13 +02:00
$this->mixed_expression_count = $mixed_expression_count;
$this->total_expression_count = $total_expression_count;
}
/**
* @return string
*/
abstract public function create(): string;
}