Select Git revision
IconClassTest.php
Forked from
Stud.IP / Stud.IP
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
LinterType.php 280 B
<?php
interface LinterType
{
public function getType(): string;
public function isAailable(): bool;
public function isFileValid(string $filename): bool;
public function lintCommand(string $filename): string;
public function analyze(?string $result): ?array;
}