Skip to content
Snippets Groups Projects
Select Git revision
  • 6b713cc4960d0847ef54723e31b724de3cccfdc5
  • main default protected
2 results

LinterType.php

Blame
  • 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;
    }