Skip to content

Instantly share code, notes, and snippets.

@lunitrixx
Forked from gskema/noinspection.php
Created April 25, 2025 00:47
Show Gist options
  • Save lunitrixx/3b7e28e1b74b4deca1a9ed8ad0b04e6e to your computer and use it in GitHub Desktop.
Save lunitrixx/3b7e28e1b74b4deca1a9ed8ad0b04e6e to your computer and use it in GitHub Desktop.

Revisions

  1. @gskema gskema revised this gist Dec 21, 2022. 1 changed file with 78 additions and 78 deletions.
    156 changes: 78 additions & 78 deletions noinspection.php
    Original file line number Diff line number Diff line change
    @@ -2,82 +2,82 @@

    /** @noinspection ? */

    // PhpUndefinedGotoLabelInspections Undefined goto label
    // PhpUndefinedVariableInspections Undefined variable
    // PhpUndefinedMethodInspections Undefined method
    // PhpUndefinedNamespaceInspections Undefined namespace
    // PhpUndefinedClassInspections Undefined class
    // PhpUndefinedFunctionInspections Undefined function
    // PhpUndefinedCallbackInspections Undefined callback
    // PhpDynamicAsStaticMethodCallInspections Dynamic method called as static
    // PhpStaticAsDynamicMethodCallInspections Static method called as dynamic
    // PhpAbstractStaticMethodInspections Static function should not be abstract
    // PhpSignatureMismatchDuringInheritanceInspections Declaration of overridden method should be compatible with parent class
    // PhpHierarchyChecksInspections
    // PhpUndefinedClassConstantInspections Undefined class constant
    // PhpMissingParentConstructorInspections Missing parent call for constructor
    // PhpMissingParentCallCommonInspections Missing parent call for method
    // PhpMissingParentCallMagicInspections Missing parent call for magic methods
    // PhpUndefinedFieldInspections Undefined field
    // PhpUndefinedConstantInspections Undefined constant
    // PhpIncludeInspections Unresolved include
    // PhpParamsInspections Parameter type
    // PhpPassByRefInspections Pass parameter by reference
    // PhpGotoIntoLoopInspections Goto into loop statement
    // PhpUnusedPrivateMethodInspections Unused private method
    // PhpUnusedPrivateFieldInspections Unused private field
    // PhpUnusedLocalVariableInspections Unused local variable
    // PhpUnusedAliasInspections Unused import
    // PhpLanguageLevelInspections Language Level
    // PhpUnreachableStatementInspections
    // PhpDeprecationInspections Deprecated
    // PhpInternalEntityUsedInspections Usage of internal entity
    // PhpToStringReturnInspections Method __toString return type
    // PhpToStringImplementationInspections Method __toString implementation
    // PhpNonCompoundUseInspections Unnecessary statement use
    // PhpConstantReassignmentInspections Constant reassignment
    // PhpWrongStringConcatenationInspections Wrong string concatenation
    // PhpWrongCatchClausesOrderInspections Wrong catch clauses order
    // PhpAssignmentInConditionInspections Assignment in condition
    // PhpDivisionByZeroInspections Division by zero
    // PhpWrongForeachArgumentTypeInspections Invalid argument supplied for foreach()
    // PhpUnusedParameterInspections Unused parameter
    // PhpMissingDocCommentInspections Missing PHPDoc comment
    // PhpSillyAssignmentInspections Silly assignment
    // PhpIllegalArrayKeyTypeInspections Illegal array key type
    // PhpDocSignatureInspections PHPDoc comment matches function/method signature
    // PhpDocMissingThrowsInspections Missing @throws tag(s)
    // PhpDocMissingReturnTagInspections Missing @return tag
    // PhpInconsistentReturnPointsInspections Inconsistent return points
    // PhpMethodParametersCountMismatchInspections Parameters number mismatch declaration
    // PhpTooManyParametersInspections Too many parameters in function declaration
    // PhpRedundantClosingTagInspections Redundant closing tag
    // PhpVoidFunctionResultUsedInspections Void function result used
    // PhpExpressionResultUnusedInspections Expression result unused
    // PhpMethodOrClassCallIsNotCaseSensitiveInspections Case mismatch in method call or class usage
    // PhpClassNamingConventionInspections Class name is not following coding convention
    // PhpFunctionNamingConventionInspections Function name is not following coding convention
    // PhpMethodNamingConventionInspections Method name is not following coding convention
    // PhpPropertyNamingConventionInspections Property name is not following coding convention
    // PhpVariableNamingConventionInspections Variable name is not following coding convention
    // PhpConstantNamingConventionInspections Constant name is not following coding convention
    // PhpUnusedClassInspections Unused class
    // PhpUnusedFunctionInspections Unused function
    // PhpMissingBreakStatementInspections Missing 'break' statement
    // PhpForeachNestedOuterKeyValueVariablesConflictInspections Nested vs outer 'foreach' variables conflict
    // PhpForeachArrayIsUsedAsValueInspections Foreach array is used as value
    // PhpUsageOfSilenceOperatorInspections Usage of a silence operator
    // PhpCSValidationInspections PHP Code Sniffer validation
    // MessDetectorValidationInspections PHP Mess Detector validation
    // PhpDuplicateArrayKeysInspections
    // PhpUnnecessaryFullyQualifiedNameInspections Unnecessary fully qualified name
    // PhpDuplicateCaseInspections Duplicate case in switch statement
    // PhpUndefinedGotoLabelInspection Undefined goto label
    // PhpUndefinedVariableInspection Undefined variable
    // PhpUndefinedMethodInspection Undefined method
    // PhpUndefinedNamespaceInspection Undefined namespace
    // PhpUndefinedClassInspection Undefined class
    // PhpUndefinedFunctionInspection Undefined function
    // PhpUndefinedCallbackInspection Undefined callback
    // PhpDynamicAsStaticMethodCallInspection Dynamic method called as static
    // PhpStaticAsDynamicMethodCallInspection Static method called as dynamic
    // PhpAbstractStaticMethodInspection Static function should not be abstract
    // PhpSignatureMismatchDuringInheritanceInspection Declaration of overridden method should be compatible with parent class
    // PhpHierarchyChecksInspection
    // PhpUndefinedClassConstantInspection Undefined class constant
    // PhpMissingParentConstructorInspection Missing parent call for constructor
    // PhpMissingParentCallCommonInspection Missing parent call for method
    // PhpMissingParentCallMagicInspection Missing parent call for magic methods
    // PhpUndefinedFieldInspection Undefined field
    // PhpUndefinedConstantInspection Undefined constant
    // PhpIncludeInspection Unresolved include
    // PhpParamsInspection Parameter type
    // PhpPassByRefInspection Pass parameter by reference
    // PhpGotoIntoLoopInspection Goto into loop statement
    // PhpUnusedPrivateMethodInspection Unused private method
    // PhpUnusedPrivateFieldInspection Unused private field
    // PhpUnusedLocalVariableInspection Unused local variable
    // PhpUnusedAliasInspection Unused import
    // PhpLanguageLevelInspection Language Level
    // PhpUnreachableStatementInspection
    // PhpDeprecationInspection Deprecated
    // PhpInternalEntityUsedInspection Usage of internal entity
    // PhpToStringReturnInspection Method __toString return type
    // PhpToStringImplementationInspection Method __toString implementation
    // PhpNonCompoundUseInspection Unnecessary statement use
    // PhpConstantReassignmentInspection Constant reassignment
    // PhpWrongStringConcatenationInspection Wrong string concatenation
    // PhpWrongCatchClausesOrderInspection Wrong catch clauses order
    // PhpAssignmentInConditionInspection Assignment in condition
    // PhpDivisionByZeroInspection Division by zero
    // PhpWrongForeachArgumentTypeInspection Invalid argument supplied for foreach()
    // PhpUnusedParameterInspection Unused parameter
    // PhpMissingDocCommentInspection Missing PHPDoc comment
    // PhpSillyAssignmentInspection Silly assignment
    // PhpIllegalArrayKeyTypeInspection Illegal array key type
    // PhpDocSignatureInspection PHPDoc comment matches function/method signature
    // PhpDocMissingThrowsInspection Missing @throws tag(s)
    // PhpDocMissingReturnTagInspection Missing @return tag
    // PhpInconsistentReturnPointsInspection Inconsistent return points
    // PhpMethodParametersCountMismatchInspection Parameters number mismatch declaration
    // PhpTooManyParametersInspection Too many parameters in function declaration
    // PhpRedundantClosingTagInspection Redundant closing tag
    // PhpVoidFunctionResultUsedInspection Void function result used
    // PhpExpressionResultUnusedInspection Expression result unused
    // PhpMethodOrClassCallIsNotCaseSensitiveInspection Case mismatch in method call or class usage
    // PhpClassNamingConventionInspection Class name is not following coding convention
    // PhpFunctionNamingConventionInspection Function name is not following coding convention
    // PhpMethodNamingConventionInspection Method name is not following coding convention
    // PhpPropertyNamingConventionInspection Property name is not following coding convention
    // PhpVariableNamingConventionInspection Variable name is not following coding convention
    // PhpConstantNamingConventionInspection Constant name is not following coding convention
    // PhpUnusedClassInspection Unused class
    // PhpUnusedFunctionInspection Unused function
    // PhpMissingBreakStatementInspection Missing 'break' statement
    // PhpForeachNestedOuterKeyValueVariablesConflictInspection Nested vs outer 'foreach' variables conflict
    // PhpForeachArrayIsUsedAsValueInspection Foreach array is used as value
    // PhpUsageOfSilenceOperatorInspection Usage of a silence operator
    // PhpCSValidationInspection PHP Code Sniffer validation
    // MessDetectorValidationInspection PHP Mess Detector validation
    // PhpDuplicateArrayKeysInspection
    // PhpUnnecessaryFullyQualifiedNameInspection Unnecessary fully qualified name
    // PhpDuplicateCaseInspection Duplicate case in switch statement
    // PhpMultipleClassesDeclarationsInOneFiles Multiple classes declarations in one file
    // PhpIllegalPsrClassPathInspections Class path doesn't match project structure
    // PhpTraditionalSyntaxArrayLiteralInspections Traditional syntax array literal detected
    // Php7ReadinessInspections PHP 7 Compatibility
    // PhpVariableVariableInspections Usage of a variable variable
    // PhpStrictTypeCheckingInspections Strict type checking rules violation
    // PhpIncompatibleReturnTypeInspections Incompatible return type
    // PhpMissingStrictTypesDeclarationInspections Missing strict types declaration
    // PhpInvalidMagicMethodModifiersInspections Invalid magic method modifiers
    // PhpIllegalPsrClassPathInspection Class path doesn't match project structure
    // PhpTraditionalSyntaxArrayLiteralInspection Traditional syntax array literal detected
    // Php7ReadinessInspection PHP 7 Compatibility
    // PhpVariableVariableInspection Usage of a variable variable
    // PhpStrictTypeCheckingInspection Strict type checking rules violation
    // PhpIncompatibleReturnTypeInspection Incompatible return type
    // PhpMissingStrictTypesDeclarationInspection Missing strict types declaration
    // PhpInvalidMagicMethodModifiersInspection Invalid magic method modifiers
  2. @gskema gskema revised this gist Jan 10, 2019. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions noinspection.php
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,5 @@
    <?php

    /** @noinspection ? */

    // PhpUndefinedGotoLabelInspections Undefined goto label
  3. @gskema gskema revised this gist Jan 10, 2019. 2 changed files with 81 additions and 79 deletions.
    79 changes: 0 additions & 79 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,79 +0,0 @@
    PhpUndefinedGotoLabelInspections Undefined goto label
    PhpUndefinedVariableInspections Undefined variable
    PhpUndefinedMethodInspections Undefined method
    PhpUndefinedNamespaceInspections Undefined namespace
    PhpUndefinedClassInspections Undefined class
    PhpUndefinedFunctionInspections Undefined function
    PhpUndefinedCallbackInspections Undefined callback
    PhpDynamicAsStaticMethodCallInspections Dynamic method called as static
    PhpStaticAsDynamicMethodCallInspections Static method called as dynamic
    PhpAbstractStaticMethodInspections Static function should not be abstract
    PhpSignatureMismatchDuringInheritanceInspections Declaration of overridden method should be compatible with parent class
    PhpHierarchyChecksInspections
    PhpUndefinedClassConstantInspections Undefined class constant
    PhpMissingParentConstructorInspections Missing parent call for constructor
    PhpMissingParentCallCommonInspections Missing parent call for method
    PhpMissingParentCallMagicInspections Missing parent call for magic methods
    PhpUndefinedFieldInspections Undefined field
    PhpUndefinedConstantInspections Undefined constant
    PhpIncludeInspections Unresolved include
    PhpParamsInspections Parameter type
    PhpPassByRefInspections Pass parameter by reference
    PhpGotoIntoLoopInspections Goto into loop statement
    PhpUnusedPrivateMethodInspections Unused private method
    PhpUnusedPrivateFieldInspections Unused private field
    PhpUnusedLocalVariableInspections Unused local variable
    PhpUnusedAliasInspections Unused import
    PhpLanguageLevelInspections Language Level
    PhpUnreachableStatementInspections
    PhpDeprecationInspections Deprecated
    PhpInternalEntityUsedInspections Usage of internal entity
    PhpToStringReturnInspections Method __toString return type
    PhpToStringImplementationInspections Method __toString implementation
    PhpNonCompoundUseInspections Unnecessary statement use
    PhpConstantReassignmentInspections Constant reassignment
    PhpWrongStringConcatenationInspections Wrong string concatenation
    PhpWrongCatchClausesOrderInspections Wrong catch clauses order
    PhpAssignmentInConditionInspections Assignment in condition
    PhpDivisionByZeroInspections Division by zero
    PhpWrongForeachArgumentTypeInspections Invalid argument supplied for foreach()
    PhpUnusedParameterInspections Unused parameter
    PhpMissingDocCommentInspections Missing PHPDoc comment
    PhpSillyAssignmentInspections Silly assignment
    PhpIllegalArrayKeyTypeInspections Illegal array key type
    PhpDocSignatureInspections PHPDoc comment matches function/method signature
    PhpDocMissingThrowsInspections Missing @throws tag(s)
    PhpDocMissingReturnTagInspections Missing @return tag
    PhpInconsistentReturnPointsInspections Inconsistent return points
    PhpMethodParametersCountMismatchInspections Parameters number mismatch declaration
    PhpTooManyParametersInspections Too many parameters in function declaration
    PhpRedundantClosingTagInspections Redundant closing tag
    PhpVoidFunctionResultUsedInspections Void function result used
    PhpExpressionResultUnusedInspections Expression result unused
    PhpMethodOrClassCallIsNotCaseSensitiveInspections Case mismatch in method call or class usage
    PhpClassNamingConventionInspections Class name is not following coding convention
    PhpFunctionNamingConventionInspections Function name is not following coding convention
    PhpMethodNamingConventionInspections Method name is not following coding convention
    PhpPropertyNamingConventionInspections Property name is not following coding convention
    PhpVariableNamingConventionInspections Variable name is not following coding convention
    PhpConstantNamingConventionInspections Constant name is not following coding convention
    PhpUnusedClassInspections Unused class
    PhpUnusedFunctionInspections Unused function
    PhpMissingBreakStatementInspections Missing 'break' statement
    PhpForeachNestedOuterKeyValueVariablesConflictInspections Nested vs outer 'foreach' variables conflict
    PhpForeachArrayIsUsedAsValueInspections Foreach array is used as value
    PhpUsageOfSilenceOperatorInspections Usage of a silence operator
    PhpCSValidationInspections PHP Code Sniffer validation
    MessDetectorValidationInspections PHP Mess Detector validation
    PhpDuplicateArrayKeysInspections
    PhpUnnecessaryFullyQualifiedNameInspections Unnecessary fully qualified name
    PhpDuplicateCaseInspections Duplicate case in switch statement
    PhpMultipleClassesDeclarationsInOneFiles Multiple classes declarations in one file
    PhpIllegalPsrClassPathInspections Class path doesn't match project structure
    PhpTraditionalSyntaxArrayLiteralInspections Traditional syntax array literal detected
    Php7ReadinessInspections PHP 7 Compatibility
    PhpVariableVariableInspections Usage of a variable variable
    PhpStrictTypeCheckingInspections Strict type checking rules violation
    PhpIncompatibleReturnTypeInspections Incompatible return type
    PhpMissingStrictTypesDeclarationInspections Missing strict types declaration
    PhpInvalidMagicMethodModifiersInspections Invalid magic method modifiers
    81 changes: 81 additions & 0 deletions noinspection.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,81 @@
    /** @noinspection ? */

    // PhpUndefinedGotoLabelInspections Undefined goto label
    // PhpUndefinedVariableInspections Undefined variable
    // PhpUndefinedMethodInspections Undefined method
    // PhpUndefinedNamespaceInspections Undefined namespace
    // PhpUndefinedClassInspections Undefined class
    // PhpUndefinedFunctionInspections Undefined function
    // PhpUndefinedCallbackInspections Undefined callback
    // PhpDynamicAsStaticMethodCallInspections Dynamic method called as static
    // PhpStaticAsDynamicMethodCallInspections Static method called as dynamic
    // PhpAbstractStaticMethodInspections Static function should not be abstract
    // PhpSignatureMismatchDuringInheritanceInspections Declaration of overridden method should be compatible with parent class
    // PhpHierarchyChecksInspections
    // PhpUndefinedClassConstantInspections Undefined class constant
    // PhpMissingParentConstructorInspections Missing parent call for constructor
    // PhpMissingParentCallCommonInspections Missing parent call for method
    // PhpMissingParentCallMagicInspections Missing parent call for magic methods
    // PhpUndefinedFieldInspections Undefined field
    // PhpUndefinedConstantInspections Undefined constant
    // PhpIncludeInspections Unresolved include
    // PhpParamsInspections Parameter type
    // PhpPassByRefInspections Pass parameter by reference
    // PhpGotoIntoLoopInspections Goto into loop statement
    // PhpUnusedPrivateMethodInspections Unused private method
    // PhpUnusedPrivateFieldInspections Unused private field
    // PhpUnusedLocalVariableInspections Unused local variable
    // PhpUnusedAliasInspections Unused import
    // PhpLanguageLevelInspections Language Level
    // PhpUnreachableStatementInspections
    // PhpDeprecationInspections Deprecated
    // PhpInternalEntityUsedInspections Usage of internal entity
    // PhpToStringReturnInspections Method __toString return type
    // PhpToStringImplementationInspections Method __toString implementation
    // PhpNonCompoundUseInspections Unnecessary statement use
    // PhpConstantReassignmentInspections Constant reassignment
    // PhpWrongStringConcatenationInspections Wrong string concatenation
    // PhpWrongCatchClausesOrderInspections Wrong catch clauses order
    // PhpAssignmentInConditionInspections Assignment in condition
    // PhpDivisionByZeroInspections Division by zero
    // PhpWrongForeachArgumentTypeInspections Invalid argument supplied for foreach()
    // PhpUnusedParameterInspections Unused parameter
    // PhpMissingDocCommentInspections Missing PHPDoc comment
    // PhpSillyAssignmentInspections Silly assignment
    // PhpIllegalArrayKeyTypeInspections Illegal array key type
    // PhpDocSignatureInspections PHPDoc comment matches function/method signature
    // PhpDocMissingThrowsInspections Missing @throws tag(s)
    // PhpDocMissingReturnTagInspections Missing @return tag
    // PhpInconsistentReturnPointsInspections Inconsistent return points
    // PhpMethodParametersCountMismatchInspections Parameters number mismatch declaration
    // PhpTooManyParametersInspections Too many parameters in function declaration
    // PhpRedundantClosingTagInspections Redundant closing tag
    // PhpVoidFunctionResultUsedInspections Void function result used
    // PhpExpressionResultUnusedInspections Expression result unused
    // PhpMethodOrClassCallIsNotCaseSensitiveInspections Case mismatch in method call or class usage
    // PhpClassNamingConventionInspections Class name is not following coding convention
    // PhpFunctionNamingConventionInspections Function name is not following coding convention
    // PhpMethodNamingConventionInspections Method name is not following coding convention
    // PhpPropertyNamingConventionInspections Property name is not following coding convention
    // PhpVariableNamingConventionInspections Variable name is not following coding convention
    // PhpConstantNamingConventionInspections Constant name is not following coding convention
    // PhpUnusedClassInspections Unused class
    // PhpUnusedFunctionInspections Unused function
    // PhpMissingBreakStatementInspections Missing 'break' statement
    // PhpForeachNestedOuterKeyValueVariablesConflictInspections Nested vs outer 'foreach' variables conflict
    // PhpForeachArrayIsUsedAsValueInspections Foreach array is used as value
    // PhpUsageOfSilenceOperatorInspections Usage of a silence operator
    // PhpCSValidationInspections PHP Code Sniffer validation
    // MessDetectorValidationInspections PHP Mess Detector validation
    // PhpDuplicateArrayKeysInspections
    // PhpUnnecessaryFullyQualifiedNameInspections Unnecessary fully qualified name
    // PhpDuplicateCaseInspections Duplicate case in switch statement
    // PhpMultipleClassesDeclarationsInOneFiles Multiple classes declarations in one file
    // PhpIllegalPsrClassPathInspections Class path doesn't match project structure
    // PhpTraditionalSyntaxArrayLiteralInspections Traditional syntax array literal detected
    // Php7ReadinessInspections PHP 7 Compatibility
    // PhpVariableVariableInspections Usage of a variable variable
    // PhpStrictTypeCheckingInspections Strict type checking rules violation
    // PhpIncompatibleReturnTypeInspections Incompatible return type
    // PhpMissingStrictTypesDeclarationInspections Missing strict types declaration
    // PhpInvalidMagicMethodModifiersInspections Invalid magic method modifiers
  4. @gskema gskema revised this gist Jan 10, 2019. 1 changed file with 79 additions and 79 deletions.
    158 changes: 79 additions & 79 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,79 +1,79 @@
    PhpUndefinedGotoLabelInspection Undefined goto label
    PhpUndefinedVariableInspection Undefined variable
    PhpUndefinedMethodInspection Undefined method
    PhpUndefinedNamespaceInspection Undefined namespace
    PhpUndefinedClassInspection Undefined class
    PhpUndefinedFunctionInspection Undefined function
    PhpUndefinedCallbackInspection Undefined callback
    PhpDynamicAsStaticMethodCallInspection Dynamic method called as static
    PhpStaticAsDynamicMethodCallInspection Static method called as dynamic
    PhpAbstractStaticMethodInspection Static function should not be abstract
    PhpSignatureMismatchDuringInheritanceInspection Declaration of overridden method should be compatible with parent class
    PhpHierarchyChecksInspection
    PhpUndefinedClassConstantInspection Undefined class constant
    PhpMissingParentConstructorInspection Missing parent call for constructor
    PhpMissingParentCallCommonInspection Missing parent call for method
    PhpMissingParentCallMagicInspection Missing parent call for magic methods
    PhpUndefinedFieldInspection Undefined field
    PhpUndefinedConstantInspection Undefined constant
    PhpIncludeInspection Unresolved include
    PhpParamsInspection Parameter type
    PhpPassByRefInspection Pass parameter by reference
    PhpGotoIntoLoopInspection Goto into loop statement
    PhpUnusedPrivateMethodInspection Unused private method
    PhpUnusedPrivateFieldInspection Unused private field
    PhpUnusedLocalVariableInspection Unused local variable
    PhpUnusedAliasInspection Unused import
    PhpLanguageLevelInspection Language Level
    PhpUnreachableStatementInspection
    PhpDeprecationInspection Deprecated
    PhpInternalEntityUsedInspection Usage of internal entity
    PhpToStringReturnInspection Method __toString return type
    PhpToStringImplementationInspection Method __toString implementation
    PhpNonCompoundUseInspection Unnecessary statement use
    PhpConstantReassignmentInspection Constant reassignment
    PhpWrongStringConcatenationInspection Wrong string concatenation
    PhpWrongCatchClausesOrderInspection Wrong catch clauses order
    PhpAssignmentInConditionInspection Assignment in condition
    PhpDivisionByZeroInspection Division by zero
    PhpWrongForeachArgumentTypeInspection Invalid argument supplied for foreach()
    PhpUnusedParameterInspection Unused parameter
    PhpMissingDocCommentInspection Missing PHPDoc comment
    PhpSillyAssignmentInspection Silly assignment
    PhpIllegalArrayKeyTypeInspection Illegal array key type
    PhpDocSignatureInspection PHPDoc comment matches function/method signature
    PhpDocMissingThrowsInspection Missing @throws tag(s)
    PhpDocMissingReturnTagInspection Missing @return tag
    PhpInconsistentReturnPointsInspection Inconsistent return points
    PhpMethodParametersCountMismatchInspection Parameters number mismatch declaration
    PhpTooManyParametersInspection Too many parameters in function declaration
    PhpRedundantClosingTagInspection Redundant closing tag
    PhpVoidFunctionResultUsedInspection Void function result used
    PhpExpressionResultUnusedInspection Expression result unused
    PhpMethodOrClassCallIsNotCaseSensitiveInspection Case mismatch in method call or class usage
    PhpClassNamingConventionInspection Class name is not following coding convention
    PhpFunctionNamingConventionInspection Function name is not following coding convention
    PhpMethodNamingConventionInspection Method name is not following coding convention
    PhpPropertyNamingConventionInspection Property name is not following coding convention
    PhpVariableNamingConventionInspection Variable name is not following coding convention
    PhpConstantNamingConventionInspection Constant name is not following coding convention
    PhpUnusedClassInspection Unused class
    PhpUnusedFunctionInspection Unused function
    PhpMissingBreakStatementInspection Missing 'break' statement
    PhpForeachNestedOuterKeyValueVariablesConflictInspection Nested vs outer 'foreach' variables conflict
    PhpForeachArrayIsUsedAsValueInspection Foreach array is used as value
    PhpUsageOfSilenceOperatorInspection Usage of a silence operator
    PhpCSValidationInspection PHP Code Sniffer validation
    MessDetectorValidationInspection PHP Mess Detector validation
    PhpDuplicateArrayKeysInspection
    PhpUnnecessaryFullyQualifiedNameInspection Unnecessary fully qualified name
    PhpDuplicateCaseInspection Duplicate case in switch statement
    PhpMultipleClassesDeclarationsInOneFile Multiple classes declarations in one file
    PhpIllegalPsrClassPathInspection Class path doesn't match project structure
    PhpTraditionalSyntaxArrayLiteralInspection Traditional syntax array literal detected
    Php7ReadinessInspection PHP 7 Compatibility
    PhpVariableVariableInspection Usage of a variable variable
    PhpStrictTypeCheckingInspection Strict type checking rules violation
    PhpIncompatibleReturnTypeInspection Incompatible return type
    PhpMissingStrictTypesDeclarationInspection Missing strict types declaration
    PhpInvalidMagicMethodModifiersInspection Invalid magic method modifiers
    PhpUndefinedGotoLabelInspections Undefined goto label
    PhpUndefinedVariableInspections Undefined variable
    PhpUndefinedMethodInspections Undefined method
    PhpUndefinedNamespaceInspections Undefined namespace
    PhpUndefinedClassInspections Undefined class
    PhpUndefinedFunctionInspections Undefined function
    PhpUndefinedCallbackInspections Undefined callback
    PhpDynamicAsStaticMethodCallInspections Dynamic method called as static
    PhpStaticAsDynamicMethodCallInspections Static method called as dynamic
    PhpAbstractStaticMethodInspections Static function should not be abstract
    PhpSignatureMismatchDuringInheritanceInspections Declaration of overridden method should be compatible with parent class
    PhpHierarchyChecksInspections
    PhpUndefinedClassConstantInspections Undefined class constant
    PhpMissingParentConstructorInspections Missing parent call for constructor
    PhpMissingParentCallCommonInspections Missing parent call for method
    PhpMissingParentCallMagicInspections Missing parent call for magic methods
    PhpUndefinedFieldInspections Undefined field
    PhpUndefinedConstantInspections Undefined constant
    PhpIncludeInspections Unresolved include
    PhpParamsInspections Parameter type
    PhpPassByRefInspections Pass parameter by reference
    PhpGotoIntoLoopInspections Goto into loop statement
    PhpUnusedPrivateMethodInspections Unused private method
    PhpUnusedPrivateFieldInspections Unused private field
    PhpUnusedLocalVariableInspections Unused local variable
    PhpUnusedAliasInspections Unused import
    PhpLanguageLevelInspections Language Level
    PhpUnreachableStatementInspections
    PhpDeprecationInspections Deprecated
    PhpInternalEntityUsedInspections Usage of internal entity
    PhpToStringReturnInspections Method __toString return type
    PhpToStringImplementationInspections Method __toString implementation
    PhpNonCompoundUseInspections Unnecessary statement use
    PhpConstantReassignmentInspections Constant reassignment
    PhpWrongStringConcatenationInspections Wrong string concatenation
    PhpWrongCatchClausesOrderInspections Wrong catch clauses order
    PhpAssignmentInConditionInspections Assignment in condition
    PhpDivisionByZeroInspections Division by zero
    PhpWrongForeachArgumentTypeInspections Invalid argument supplied for foreach()
    PhpUnusedParameterInspections Unused parameter
    PhpMissingDocCommentInspections Missing PHPDoc comment
    PhpSillyAssignmentInspections Silly assignment
    PhpIllegalArrayKeyTypeInspections Illegal array key type
    PhpDocSignatureInspections PHPDoc comment matches function/method signature
    PhpDocMissingThrowsInspections Missing @throws tag(s)
    PhpDocMissingReturnTagInspections Missing @return tag
    PhpInconsistentReturnPointsInspections Inconsistent return points
    PhpMethodParametersCountMismatchInspections Parameters number mismatch declaration
    PhpTooManyParametersInspections Too many parameters in function declaration
    PhpRedundantClosingTagInspections Redundant closing tag
    PhpVoidFunctionResultUsedInspections Void function result used
    PhpExpressionResultUnusedInspections Expression result unused
    PhpMethodOrClassCallIsNotCaseSensitiveInspections Case mismatch in method call or class usage
    PhpClassNamingConventionInspections Class name is not following coding convention
    PhpFunctionNamingConventionInspections Function name is not following coding convention
    PhpMethodNamingConventionInspections Method name is not following coding convention
    PhpPropertyNamingConventionInspections Property name is not following coding convention
    PhpVariableNamingConventionInspections Variable name is not following coding convention
    PhpConstantNamingConventionInspections Constant name is not following coding convention
    PhpUnusedClassInspections Unused class
    PhpUnusedFunctionInspections Unused function
    PhpMissingBreakStatementInspections Missing 'break' statement
    PhpForeachNestedOuterKeyValueVariablesConflictInspections Nested vs outer 'foreach' variables conflict
    PhpForeachArrayIsUsedAsValueInspections Foreach array is used as value
    PhpUsageOfSilenceOperatorInspections Usage of a silence operator
    PhpCSValidationInspections PHP Code Sniffer validation
    MessDetectorValidationInspections PHP Mess Detector validation
    PhpDuplicateArrayKeysInspections
    PhpUnnecessaryFullyQualifiedNameInspections Unnecessary fully qualified name
    PhpDuplicateCaseInspections Duplicate case in switch statement
    PhpMultipleClassesDeclarationsInOneFiles Multiple classes declarations in one file
    PhpIllegalPsrClassPathInspections Class path doesn't match project structure
    PhpTraditionalSyntaxArrayLiteralInspections Traditional syntax array literal detected
    Php7ReadinessInspections PHP 7 Compatibility
    PhpVariableVariableInspections Usage of a variable variable
    PhpStrictTypeCheckingInspections Strict type checking rules violation
    PhpIncompatibleReturnTypeInspections Incompatible return type
    PhpMissingStrictTypesDeclarationInspections Missing strict types declaration
    PhpInvalidMagicMethodModifiersInspections Invalid magic method modifiers
  5. @gskema gskema created this gist Jan 10, 2019.
    79 changes: 79 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,79 @@
    PhpUndefinedGotoLabelInspection Undefined goto label
    PhpUndefinedVariableInspection Undefined variable
    PhpUndefinedMethodInspection Undefined method
    PhpUndefinedNamespaceInspection Undefined namespace
    PhpUndefinedClassInspection Undefined class
    PhpUndefinedFunctionInspection Undefined function
    PhpUndefinedCallbackInspection Undefined callback
    PhpDynamicAsStaticMethodCallInspection Dynamic method called as static
    PhpStaticAsDynamicMethodCallInspection Static method called as dynamic
    PhpAbstractStaticMethodInspection Static function should not be abstract
    PhpSignatureMismatchDuringInheritanceInspection Declaration of overridden method should be compatible with parent class
    PhpHierarchyChecksInspection
    PhpUndefinedClassConstantInspection Undefined class constant
    PhpMissingParentConstructorInspection Missing parent call for constructor
    PhpMissingParentCallCommonInspection Missing parent call for method
    PhpMissingParentCallMagicInspection Missing parent call for magic methods
    PhpUndefinedFieldInspection Undefined field
    PhpUndefinedConstantInspection Undefined constant
    PhpIncludeInspection Unresolved include
    PhpParamsInspection Parameter type
    PhpPassByRefInspection Pass parameter by reference
    PhpGotoIntoLoopInspection Goto into loop statement
    PhpUnusedPrivateMethodInspection Unused private method
    PhpUnusedPrivateFieldInspection Unused private field
    PhpUnusedLocalVariableInspection Unused local variable
    PhpUnusedAliasInspection Unused import
    PhpLanguageLevelInspection Language Level
    PhpUnreachableStatementInspection
    PhpDeprecationInspection Deprecated
    PhpInternalEntityUsedInspection Usage of internal entity
    PhpToStringReturnInspection Method __toString return type
    PhpToStringImplementationInspection Method __toString implementation
    PhpNonCompoundUseInspection Unnecessary statement use
    PhpConstantReassignmentInspection Constant reassignment
    PhpWrongStringConcatenationInspection Wrong string concatenation
    PhpWrongCatchClausesOrderInspection Wrong catch clauses order
    PhpAssignmentInConditionInspection Assignment in condition
    PhpDivisionByZeroInspection Division by zero
    PhpWrongForeachArgumentTypeInspection Invalid argument supplied for foreach()
    PhpUnusedParameterInspection Unused parameter
    PhpMissingDocCommentInspection Missing PHPDoc comment
    PhpSillyAssignmentInspection Silly assignment
    PhpIllegalArrayKeyTypeInspection Illegal array key type
    PhpDocSignatureInspection PHPDoc comment matches function/method signature
    PhpDocMissingThrowsInspection Missing @throws tag(s)
    PhpDocMissingReturnTagInspection Missing @return tag
    PhpInconsistentReturnPointsInspection Inconsistent return points
    PhpMethodParametersCountMismatchInspection Parameters number mismatch declaration
    PhpTooManyParametersInspection Too many parameters in function declaration
    PhpRedundantClosingTagInspection Redundant closing tag
    PhpVoidFunctionResultUsedInspection Void function result used
    PhpExpressionResultUnusedInspection Expression result unused
    PhpMethodOrClassCallIsNotCaseSensitiveInspection Case mismatch in method call or class usage
    PhpClassNamingConventionInspection Class name is not following coding convention
    PhpFunctionNamingConventionInspection Function name is not following coding convention
    PhpMethodNamingConventionInspection Method name is not following coding convention
    PhpPropertyNamingConventionInspection Property name is not following coding convention
    PhpVariableNamingConventionInspection Variable name is not following coding convention
    PhpConstantNamingConventionInspection Constant name is not following coding convention
    PhpUnusedClassInspection Unused class
    PhpUnusedFunctionInspection Unused function
    PhpMissingBreakStatementInspection Missing 'break' statement
    PhpForeachNestedOuterKeyValueVariablesConflictInspection Nested vs outer 'foreach' variables conflict
    PhpForeachArrayIsUsedAsValueInspection Foreach array is used as value
    PhpUsageOfSilenceOperatorInspection Usage of a silence operator
    PhpCSValidationInspection PHP Code Sniffer validation
    MessDetectorValidationInspection PHP Mess Detector validation
    PhpDuplicateArrayKeysInspection
    PhpUnnecessaryFullyQualifiedNameInspection Unnecessary fully qualified name
    PhpDuplicateCaseInspection Duplicate case in switch statement
    PhpMultipleClassesDeclarationsInOneFile Multiple classes declarations in one file
    PhpIllegalPsrClassPathInspection Class path doesn't match project structure
    PhpTraditionalSyntaxArrayLiteralInspection Traditional syntax array literal detected
    Php7ReadinessInspection PHP 7 Compatibility
    PhpVariableVariableInspection Usage of a variable variable
    PhpStrictTypeCheckingInspection Strict type checking rules violation
    PhpIncompatibleReturnTypeInspection Incompatible return type
    PhpMissingStrictTypesDeclarationInspection Missing strict types declaration
    PhpInvalidMagicMethodModifiersInspection Invalid magic method modifiers