ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/phpro/grumphp/src/Linter/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/phpro/grumphp/src/Linter/LinterInterface.php |
<?php declare(strict_types=1); namespace GrumPHP\Linter; use GrumPHP\Collection\LintErrorsCollection; use SplFileInfo; interface LinterInterface { public function lint(SplFileInfo $file): LintErrorsCollection; public function isInstalled(): bool; }