1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Move to more appropriate location

This commit is contained in:
Matthew Brown 2020-02-17 22:21:04 -05:00
parent 2cb3d0f9f3
commit a55686b6e4
3 changed files with 4 additions and 4 deletions

View File

@ -59,8 +59,6 @@ Level 5 and above allows a more non-verifiable code, and higher levels are even
- [OverriddenPropertyAccess](issues.md#overriddenpropertyaccess)
- [ParadoxicalCondition](issues.md#paradoxicalcondition)
- [ParentNotFound](issues.md#parentnotfound)
- [PossiblyUndefinedIntArrayOffset](issues.md#possiblyundefinedintarrayoffset)
- [PossiblyUndefinedStringArrayOffset](issues.md#possiblyundefinedstringarrayoffset)
- [TooFewArguments](issues.md#toofewarguments)
- [UndefinedClass](issues.md#undefinedclass)
- [UndefinedConstant](issues.md#undefinedconstant)
@ -260,6 +258,8 @@ These issues are treated as errors at level 7 and below.
## Feature-specific errors
- [ForbiddenEcho](issues.md#forbiddenecho)
- [PossiblyUndefinedIntArrayOffset](issues.md#possiblyundefinedintarrayoffset)
- [PossiblyUndefinedStringArrayOffset](issues.md#possiblyundefinedstringarrayoffset)
- [PossiblyUnusedMethod](issues.md#possiblyunusedmethod)
- [PossiblyUnusedParam](issues.md#possiblyunusedparam)
- [PossiblyUnusedProperty](issues.md#possiblyunusedproperty)

View File

@ -3,5 +3,5 @@ namespace Psalm\Issue;
class PossiblyUndefinedIntArrayOffset extends CodeIssue
{
const LEVEL = -2;
const ERROR_LEVEL = -2;
}

View File

@ -3,5 +3,5 @@ namespace Psalm\Issue;
class PossiblyUndefinedStringArrayOffset extends CodeIssue
{
const LEVEL = -2;
const ERROR_LEVEL = -2;
}