Skip to content
Snippets Groups Projects
Select Git revision
  • b18b08a7570f9e3820b86e069917b38a891b579a
  • main default protected
  • 5.5 protected
  • atlantis
  • 5.3 protected
  • 5.0 protected
  • issue-23
  • issue8-seat-logging-and-export
  • ticket-216
  • tickets-215-216-241-242
10 results

PluginAdministration.php

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