Skip to content

Commit

Permalink
Move to more appropriate location
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Feb 18, 2020
1 parent 2cb3d0f commit a55686b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/running_psalm/error_levels.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/Psalm/Issue/PossiblyUndefinedIntArrayOffset.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class PossiblyUndefinedIntArrayOffset extends CodeIssue
{
const LEVEL = -2;
const ERROR_LEVEL = -2;
}
2 changes: 1 addition & 1 deletion src/Psalm/Issue/PossiblyUndefinedStringArrayOffset.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class PossiblyUndefinedStringArrayOffset extends CodeIssue
{
const LEVEL = -2;
const ERROR_LEVEL = -2;
}

0 comments on commit a55686b

Please sign in to comment.