API Reference
Namespaces
PhpParser
Builder
Comment
ErrorHandler
Internal
Lexer
Node
NodeVisitor
Parser
PrettyPrinter
PHPStan
Analyser
BetterReflection
Classes
Collectors
Command
DependencyInjection
Diagnose
File
Node
Parser
Php
PhpDoc
PhpDocParser
Reflection
Rules
Constants
Exceptions
Methods
Properties
Testing
Type
none
Classes
FoundTypeResult
RuleErrorBuilder
RuleLevelHelper
RuleLevelHelperAcceptsResult
Interfaces
FileRuleError
IdentifierRuleError
LineRuleError
MetadataRuleError
NonIgnorableRuleError
Rule
RuleError
TipRuleError
Overview
Namespace
Interface
Tree
1:
<?php
declare
(strict_types =
1
);
2:
3:
namespace
PHPStan\Rules;
4:
5:
/** @api */
6:
interface
FileRuleError
extends
RuleError
7:
{
8:
9:
public
function
getFile(): string;
10:
11:
public
function
getFileDescription(): string;
12:
13:
}
14: