File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
use PHPStan \Command \Output ;
11
11
use PHPStan \File \RelativePathHelper ;
12
12
13
- final readonly class TicketSwapErrorFormatter implements ErrorFormatter
13
+ final class TicketSwapErrorFormatter implements ErrorFormatter
14
14
{
15
15
private const FORMAT = "{message} \n{links} " ;
16
16
private const LINK_FORMAT_DEFAULT = "↳ <href={editorUrl}>{shortPath}:{line}</> \n" ;
22
22
private string $ linkFormat ;
23
23
24
24
public function __construct (
25
- private RelativePathHelper $ relativePathHelper ,
26
- private CiDetectedErrorFormatter $ ciDetectedErrorFormatter ,
27
- private ?string $ editorUrl ,
25
+ private readonly RelativePathHelper $ relativePathHelper ,
26
+ private readonly CiDetectedErrorFormatter $ ciDetectedErrorFormatter ,
27
+ private readonly ?string $ editorUrl ,
28
28
) {
29
29
$ this ->linkFormat = self ::getLinkFormatFromEnv ();
30
30
}
You can’t perform that action at this time.
0 commit comments