Last active
September 18, 2024 07:02
-
-
Save gskema/66f82792f2221771ea7407ff5245b35a to your computer and use it in GitHub Desktop.
PhpStorm @noinspection list of all tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** @noinspection ? */ | |
// 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 | |
// 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 |
PhpNamedArgumentsWithChangedOrderInspection for "Named arguments order does not match parameters order" as per phpstorm's tweet back to my on twitter.
I didn't notice at first, but the s
in Inspections
caused me about 10 minutes of confusion wondering why the override wasn't working.
Just in case anyone else has the same problem, remove the final s, and it should work :)
/** @noinspection PhpExpressionResultUnusedInspection */
All (not add) PHP inspections are here:
_language | _groupPath | _shortName | _groupKey | _enabledByDefault | _level | _implementationClass | _key | _bundle | _unfair | _cleanupTool | _editorAttributes |
---|---|---|---|---|---|---|---|---|---|---|---|
PHP | PHP | PhpUndefinedGotoLabelInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedGotoLabelInspection | inspection.php.undefined.goto.label.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedVariableInspection | inspection.php.group.undefined | true | ERROR | com.jetbrains.php.lang.inspections.PhpUndefinedVariableInspection | inspection.php.undefined.variable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedMethodInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedMethodInspection | inspection.php.undefined.method.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedNamespaceInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedNamespaceInspection | inspection.php.undefined.namespace.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedClassInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedClassInspection | inspection.php.undefined.class.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMultipleClassDeclarationsInspection | inspection.php.group.undefined | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpMultipleClassDeclarationsInspection | inspection.php.multiple.class.declarations.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedFunctionInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedFunctionInspection | inspection.php.undefined.function.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedCallbackInspection | inspection.php.group.undefined | false | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedCallbackInspection | inspection.php.undefined.callback.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpPossiblePolymorphicInvocationInspection | inspection.php.group.undefined | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpPossiblePolymorphicInvocationInspection | inspection.php.possible.polymorphic.invocation.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDynamicAsStaticMethodCallInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDynamicAsStaticMethodCallInspection | inspection.php.dynamic.as.static.method.call.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpStaticAsDynamicMethodCallInspection | inspection.php.group.general | false | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpStaticAsDynamicMethodCallInspection | inspection.php.static.as.dynamic.method.call.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpAbstractStaticMethodInspection | inspection.php.group.strict.standards | true | WARNING | com.jetbrains.php.lang.inspections.strictStandards.PhpAbstractStaticMethodInspection | inspection.php.abstract.static.method.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpSignatureMismatchDuringInheritanceInspection | inspection.php.group.strict.standards | true | WARNING | com.jetbrains.php.lang.inspections.strictStandards.PhpSignatureMismatchDuringInheritanceInspection | inspection.php.signature.mismatch.during.inheritance.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpSuperClassIncompatibleWithInterfaceInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.strictStandards.PhpSuperClassIncompatibleWithInterfaceInspection | inspection.php.super.class.incompatible.with.interface.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpHierarchyChecksInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.classes.PhpHierarchyChecksInspection | inspection.hierarchyChecks | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedClassConstantInspection | inspection.php.group.undefined | true | ERROR | com.jetbrains.php.lang.inspections.PhpUndefinedClassConstantInspection | inspection.php.undefined.class.constant.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingParentConstructorInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.missingParentCall.PhpMissingParentConstructorInspection | inspection.php.missing.parent.constructor.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingParentCallCommonInspection | inspection.php.group.probable.bugs | false | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.missingParentCall.PhpMissingParentCallCommonInspection | inspection.php.missing.parent.call.common.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingParentCallMagicInspection | inspection.php.group.probable.bugs | false | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.missingParentCall.PhpMissingParentCallMagicInspection | inspection.php.missing.parent.call.magic.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpStatementHasEmptyBodyInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpStatementHasEmptyBodyInspection | inspection.php.statement.has.empty.body.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedFieldInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedFieldInspection | inspection.php.undefined.field.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDynamicFieldDeclarationInspection | inspection.php.group.undefined | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpDynamicFieldDeclarationInspection | inspection.php.dynamic.field.declaration | messages.PhpBundle | |||
PHP | PHP | PhpTooLongMemberReferenceChainInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpTooLongMemberReferenceChainInspection | inspection.php.too.long.member.reference.chain | messages.PhpBundle | |||
PHP | PHP | PhpUndefinedConstantInspection | inspection.php.group.undefined | true | WARNING | com.jetbrains.php.lang.inspections.PhpUndefinedConstantInspection | inspection.php.undefined.constant.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpIncludeInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpIncludeInspection | inspection.php.include.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpParamsInspection | inspection.php.group.type.compatibility | true | WARNING | com.jetbrains.php.lang.inspections.type.PhpParamsInspection | inspection.php.params.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpOptionalBeforeRequiredParametersInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpOptionalBeforeRequiredParametersInspection | inspection.php.optional.before.required.parameters.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpPassByRefInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.PhpPassByRefInspection | inspection.php.pass.by.ref.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpGotoIntoLoopInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.controlFlow.PhpGotoIntoLoopInspection | inspection.php.goto.into.loop.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnusedPrivateMethodInspection | inspection.php.group.unused | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnusedPrivateMethodInspection | inspection.php.unused.private.method.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnusedPrivateFieldInspection | inspection.php.group.unused | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnusedPrivateFieldInspection | inspection.php.unused.private.field.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnusedLocalVariableInspection | inspection.php.group.unused | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpUnusedLocalVariableInspection | inspection.php.unused.local.variable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnusedAliasInspection | inspection.php.group.unused | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnusedAliasInspection | inspection.php.unused.alias.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnusedFieldDefaultValueInspection | inspection.php.group.unused | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnusedFieldDefaultValueInspection | inspection.php.unused.field.default.value.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpArithmeticTypeCheckInspection | inspection.php.group.type.compatibility | true | ERROR | com.jetbrains.php.lang.inspections.type.PhpArithmeticTypeCheckInspection | inspection.php.arithmetic.type.check | messages.PhpBundle | |||
PHP | PHP | PhpLanguageLevelInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpLanguageLevelInspection | inspection.php.language.level.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnreachableStatementInspection | inspection.php.group.control.flow | true | WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpUnreachableStatementInspection | inspection.unreachable.statement | messages.PhpBundle | |||
PHP | PHP | PhpTypedPropertyMightBeUninitializedInspection | inspection.php.group.control.flow | true | WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpTypedPropertyMightBeUninitializedInspection | inspection.php.typed.property.might.be.uninitialized.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDeprecationInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpDeprecationInspection | inspection.php.deprecation.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpElementIsNotAvailableInCurrentPhpVersionInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpElementIsNotAvailableInCurrentPhpVersionInspection | inspection.php.element.is.not.available.in.current.php.version.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedCastInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedCastInspection | inspection.php.deprecated.cast.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpExpressionAlwaysNullInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpExpressionAlwaysNullInspection | inspection.php.expression.always.null.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedImplodeUsageInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedImplodeUsageInspection | inspection.php.deprecated.implode.usage.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedPartiallySupportedCallableInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedPartiallySupportedCallableInspection | inspection.php.deprecated.partially.supported.callables.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedSerializableUsageInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedSerializableUsageInspection | inspection.php.deprecated.serializable.interface.usage.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpInternalEntityUsedInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpInternalEntityUsedInspection | inspection.php.internal.entity.used.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpToStringReturnInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.probablyBug.PhpToStringReturnInspection | inspection.php.to.string.return.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpToStringImplementationInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpToStringImplementationInspection | inspection.php.to.string.implementation.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpNonCompoundUseInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpNonCompoundUseInspection | inspection.php.non.compound.use.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMethodMayBeInaccessibleInLateStaticBindingInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpMethodMayBeInaccessibleInLateStaticBindingInspection | inspection.php.private.method.may.be.inaccessible.in.late.static.binding.call | messages.PhpBundle | |||
PHP | PHP | PhpConstantReassignmentInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpConstantReassignmentInspection | inspection.php.constant.reassignment.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpWrongStringConcatenationInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpWrongStringConcatenationInspection | inspection.php.wrong.string.concatenation.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpWrongCatchClausesOrderInspection | inspection.php.group.error.handling | true | WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpWrongCatchClausesOrderInspection | inspection.php.wrong.catch.clauses.order.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpAssignmentInConditionInspection | inspection.php.group.probable.bugs | true | INFORMATION | com.jetbrains.php.lang.inspections.probablyBug.PhpAssignmentInConditionInspection | inspection.php.assignment.in.condition.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDivisionByZeroInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.probablyBug.PhpDivisionByZeroInspection | inspection.php.division.by.zero.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpWrongForeachArgumentTypeInspection | inspection.php.group.type.compatibility | true | WARNING | com.jetbrains.php.lang.inspections.type.PhpWrongForeachArgumentTypeInspection | inspection.php.wrong.foreach.argument.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnusedParameterInspection | inspection.php.group.unused | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnusedParameterInspection | inspection.php.unused.parameter.inspection.display.name | messages.PhpBundle | |||
PHP | PHP,PHPDoc | PhpMissingDocCommentInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpMissingDocCommentInspection | inspection.php.missing.doc.comment.inspection.display.name | messages.PhpBundle | |||
PHP | PHP,PHPDoc | PhpEnforceDocCommentInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpEnforceDocCommentInspection | inspection.php.enforce.doc.comment.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpSillyAssignmentInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpSillyAssignmentInspection | inspection.php.silly.assignment.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpIllegalArrayKeyTypeInspection | inspection.php.group.type.compatibility | true | WARNING | com.jetbrains.php.lang.inspections.type.PhpIllegalArrayKeyTypeInspection | inspection.php.illegal.array.key.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpApplyingEmptyIndexOperatorOnStringInspection | inspection.group.probably.bug | true | ERROR | com.jetbrains.php.lang.inspections.PhpApplyingEmptyIndexOperatorOnStringInspection | inspection.php.empty.index.operator.not.supported.for.strings.display.name | messages.PhpBundle | |||
PHP | PHP | PhpInvalidStringOffsetUsageInspection | inspection.group.probably.bug | true | ERROR | com.jetbrains.php.lang.inspections.PhpInvalidStringOffsetUsageInspection | inspection.php.invalid.string.offset.usage | messages.PhpBundle | |||
PHP | PHP | PhpIllegalStringOffsetInspection | inspection.php.group.type.compatibility | true | WARNING | com.jetbrains.php.lang.inspections.type.PhpIllegalStringOffsetInspection | inspection.php.illegal.string.offset.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDocSignatureInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpDocSignatureInspection | inspection.php.doc.signature.inspection.display.name | messages.PhpBundle | |||
PHP | PHP,PHPDoc | PhpDocSignatureIsNotCompleteInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpDocSignatureIsNotCompleteInspection | inspection.php.doc.is.not.complete.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpReturnDocTypeMismatchInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpReturnDocTypeMismatchInspection | inspection.php.return.doc.type.mismatch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpVarTagWithoutVariableNameInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpVarTagWithoutVariableNameInspection | inspection.php.type.tag.without.variable.name | messages.PhpBundle | |||
PHP | PHP | PhpRedundantDocCommentInspection | inspection.php.group.phpdoc | true | INFORMATION | com.jetbrains.php.lang.inspections.phpdoc.PhpRedundantDocCommentInspection | inspection.php.redundant.doc.comment.inspection.display.name | messages.PhpBundle | |||
PHP | PHP,PHPDoc | PhpDocMissingThrowsInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpDocMissingThrowsInspection | inspection.php.doc.missing.throws.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDocRedundantThrowsInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpDocRedundantThrowsInspection | inspection.php.doc.redundant.throws.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpRedundantVariableDocTypeInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpRedundantVariableDocTypeInspection | inspection.php.redundant.variable.doc.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpInconsistentReturnPointsInspection | inspection.php.group.code.smell | true | WARNING | com.jetbrains.php.lang.inspections.PhpInconsistentReturnPointsInspection | inspection.php.inconsistent.return.points.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMethodParametersCountMismatchInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpMethodParametersCountMismatchInspection | inspection.php.method.parameters.count.mismatch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpTooManyParametersInspection | inspection.php.group.code.smell | false | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpTooManyParametersInspection | inspection.php.too.many.parameters.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpRedundantClosingTagInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpRedundantClosingTagInspection | inspection.php.redundant.closing.tag.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpVoidFunctionResultUsedInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpVoidFunctionResultUsedInspection | inspection.php.invalid.function.result.used.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpExpressionResultUnusedInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpExpressionResultUnusedInspection | inspection.php.expression.result.unused.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMethodOrClassCallIsNotCaseSensitiveInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpMethodOrClassCallIsNotCaseSensitiveInspection | inspection.php.method.or.class.call.is.not.case.sensitive.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpOverridingMethodVisibilityInspection | inspection.php.group.code.smell | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpOverridingMethodVisibilityInspection | inspection.php.overriding.method.visibility.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpClassNamingConventionInspection | inspection.php.group.naming.conventions | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.namingConvention.PhpClassNamingConventionInspection | inspection.php.class.naming.convention.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpFunctionNamingConventionInspection | inspection.php.group.naming.conventions | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.namingConvention.PhpFunctionNamingConventionInspection | inspection.php.function.naming.convention.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMethodNamingConventionInspection | inspection.php.group.naming.conventions | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.namingConvention.PhpMethodNamingConventionInspection | inspection.php.method.naming.convention.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpPropertyNamingConventionInspection | inspection.php.group.naming.conventions | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.namingConvention.PhpPropertyNamingConventionInspection | inspection.php.property.naming.convention.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpVariableNamingConventionInspection | inspection.php.group.naming.conventions | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.namingConvention.PhpVariableNamingConventionInspection | inspection.php.variable.naming.convention.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpConstantNamingConventionInspection | inspection.php.group.naming.conventions | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.namingConvention.PhpConstantNamingConventionInspection | inspection.php.constant.naming.convention.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitMissingTargetForTestInspection | inspection.php.group.phpunit | true | INFORMATION | com.jetbrains.php.lang.inspections.PhpUnitMissingTargetForTestInspection | inspection.php.unit.missing.target.for.test.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitUndefinedDataProviderInspection | inspection.php.group.phpunit | true | WARNING | com.jetbrains.php.lang.inspections.PhpUnitUndefinedDataProviderInspection | inspection.php.unit.undefined.data.provider.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitCoversFunctionWithoutScopeResolutionOperatorInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnitCoversFunctionWithoutScopeResolutionOperatorInspection | inspection.php.unit.covers.function.without.scope.resolution.operator.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertEqualsInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertEqualsInspection | inspection.php.unit.assert.equals.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertFileEqualsInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertFileEqualsInspection | inspection.php.unit.assert.file.equals.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertContainsInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertContainsInspection | inspection.php.unit.assert.contains.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertCanBeReplacedWithFailInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertCanBeReplacedWithFailInspection | inspection.php.unit.assert.can.be.replaced.with.fail | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertCanBeReplacedWithEmptyInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertCanBeReplacedWithEmptyInspection | inspection.php.unit.assert.empty.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertTrueWithIncompatibleTypeArgumentInspection | inspection.php.group.phpunit | true | WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertTrueWithIncompatibleTypeArgumentInspection | inspection.php.unit.assert.always.execute.to.same.result | messages.PhpBundle | |||
PHP | PHP | PhpUnitTestFailedLineInspection | inspection.php.group.phpunit | true | WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitTestFailedLineInspection | inspection.php.unit.failed.line | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertCountInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertCountInspection | inspection.php.unit.assert.count.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitMisorderedAssertEqualsArgumentsInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitMisorderedAssertEqualsArgumentsInspection | inspection.php.unit.misordered.assert.equals.arguments.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitAssertArrayHasKeyInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitAssertArrayHasKeyInspection | inspection.php.unit.assert.array.has.key.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitDeprecatedExpectExceptionInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitDeprecatedExpectExceptionInspection | inspection.php.unit.deprecated.expect.exception.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitDeprecatedCallsIn10VersionInspection | inspection.php.group.phpunit | true | WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitDeprecatedCallsIn10VersionInspection | inspection.php.unit.deprecated.call.in.phpunit.10 | messages.PhpBundle | |||
PHP | PHP | PhpUnitExpectedExceptionDocTagIsDeprecatedInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitExpectedExceptionDocTagIsDeprecatedInspection | inspection.php.unit.expected.exception.doc.tag.is.deprecated.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnitInvalidMockingEntityInspection | inspection.php.group.phpunit | true | ERROR | com.jetbrains.php.lang.inspections.phpunit.PhpUnitInvalidMockingEntityInspection | inspection.php.unit.invalid.mocking.target | messages.PhpBundle | |||
PHP | PHP | PhpMockeryInvalidMockingMethodInspection | inspection.php.group.phpunit | true | ERROR | com.jetbrains.php.lang.inspections.PhpMockeryInvalidMockingMethodInspection | inspection.php.mockery.invalid.mocking.target | messages.PhpBundle | |||
PHP | PHP | PhpUnitCoversByAccessModifierIsDeprecatedInspection | inspection.php.group.phpunit | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpunit.PhpUnitCoversByAccessModifierIsDeprecatedInspection | inspection.php.unit.covers.by.access.modifier.is.deprecated.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingBreakStatementInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpMissingBreakStatementInspection | inspection.php.missing.break.statement.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpNeverTypedFunctionReturnViolationInspection | inspection.php.group.control.flow | true | ERROR | com.jetbrains.php.lang.inspections.controlFlow.PhpNeverTypedFunctionReturnViolationInspection | inspection.php.never.typed.function.returning.value | messages.PhpBundle | |||
PHP | PHP | PhpPregMatchWithoutEffectiveRegexpInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPregMatchWithoutEffectiveRegexpInspection | inspection.php.preg.match.without.regular.expression | messages.PhpBundle | |||
PHP | PHP | PhpPregSplitWithoutRegExpInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPregSplitWithoutRegExpInspection | inspection.php.preg.split.can.be.replaced.with.explode | messages.PhpBundle | |||
PHP | PHP | PhpPregMatchReplaceWithComparisonInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPregMatchReplaceWithComparisonInspection | inspection.php.preg.match.can.be.replaced.with.comparison | messages.PhpBundle | |||
PHP | PHP | PhpPregReplaceWithEmptyReplacementInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPregReplaceWithEmptyReplacementInspection | inspection.php.preg.replace.with.empty.replacement.name | messages.PhpBundle | |||
PHP | PHP | PhpPregMatchRedundantClosureInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPregMatchRedundantClosureInspection | inspection.php.preg.match.redundant.closure | messages.PhpBundle | |||
PHP | PHP | PhpForeachNestedOuterKeyValueVariablesConflictInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpForeachNestedOuterKeyValueVariablesConflictInspection | inspection.php.foreach.nested.outer.key.value.variables.conflict.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpForeachArrayIsUsedAsValueInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpForeachArrayIsUsedAsValueInspection | inspection.php.foreach.array.is.used.as.value.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUsageOfSilenceOperatorInspection | inspection.php.group.code.smell | false | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUsageOfSilenceOperatorInspection | inspection.php.usage.of.silence.operator.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUselessTrailingCommaInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUselessTrailingCommaInspection | inspection.php.useless.trailing.comma.inspection.display.name | messages.PhpBundle | |||
PHP | PhpCSValidationInspection | inspection.php.group.quality.tools | false | WEAK WARNING | com.jetbrains.php.tools.quality.phpcs.PhpCSValidationInspection | inspection.php.CS.validation.inspection.display.name | messages.PhpBundle | true | |||
PHP | PHP | PhpCSFixerValidationInspection | inspection.php.group.quality.tools | false | WEAK WARNING | com.jetbrains.php.tools.quality.phpCSFixer.PhpCSFixerValidationInspection | inspection.php.CS.fixer.validation.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP | MessDetectorValidationInspection | inspection.php.group.quality.tools | false | WEAK WARNING | com.jetbrains.php.tools.quality.messDetector.MessDetectorValidationInspection | inspection.mess.detector.validation.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP | PhpDuplicateArrayKeysInspection | inspection.group.probably.bug | true | WARNING | com.jetbrains.php.lang.inspections.PhpDuplicateArrayKeysInspection | inspection.duplicate.array.keys.display.name | ||||
PHP | PHP | PhpUnnecessaryFullyQualifiedNameInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpUnnecessaryFullyQualifiedNameInspection | inspection.php.unnecessary.fully.qualified.name.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP | PhpFullyQualifiedNameUsageInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpFullyQualifiedNameUsageInspection | inspection.php.fully.qualified.name.usage.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP | PhpDuplicateCaseInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpDuplicateCaseInspection | inspection.php.duplicate.case.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpNonStrictObjectEqualityInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpNonStrictObjectEqualityInspection | inspection.php.non.strict.object.equality.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnhandledExceptionInspection | inspection.php.group.error.handling | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpUnhandledExceptionInspection | inspection.php.unhandled.exception.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpRedundantCatchClauseInspection | inspection.php.group.error.handling | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpRedundantCatchClauseInspection | inspection.php.redundant.catch.clause.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMultipleClassesDeclarationsInOneFile | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.psr0.PhpMultipleClassesDeclarationsInOneFile | inspection.php.multiple.classes.declarations.in.one.file.display.name | messages.PhpBundle | |||
PHP | PHP | PhpIllegalPsrClassPathInspection | inspection.php.group.code.style | true | WARNING | com.jetbrains.php.lang.inspections.psr0.PhpIllegalPsrClassPathInspection | inspection.php.illegal.psr.class.path.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpTraditionalSyntaxArrayLiteralInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpTraditionalSyntaxArrayLiteralInspection | inspection.php.traditional.syntax.array.literal.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpVariableVariableInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpVariableVariableInspection | inspection.php.variable.variable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP,PHPDoc | PhpNonCanonicalElementsOrderInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpNonCanonicalElementsOrderInspection | inspection.php.non.canonical.elements.order.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpNullSafeOperatorCanBeUsedInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpNullSafeOperatorCanBeUsedInspection | inspection.php.null.safe.operator.can.be.used | messages.PhpBundle | |||
PHP | PHP | PhpStrictTypeCheckingInspection | inspection.php.group.type.compatibility | true | ERROR | com.jetbrains.php.lang.inspections.type.PhpStrictTypeCheckingInspection | inspection.php.strict.type.checking.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpIncompatibleReturnTypeInspection | inspection.php.group.type.compatibility | true | WARNING | com.jetbrains.php.lang.inspections.type.PhpIncompatibleReturnTypeInspection | inspection.php.incompatible.return.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingStrictTypesDeclarationInspection | inspection.php.group.type.compatibility | false | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpMissingStrictTypesDeclarationInspection | inspection.php.missing.strict.types.declaration.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpInvalidMagicMethodModifiersInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.classes.PhpInvalidMagicMethodModifiersInspection | inspection.php.invalid.magic.method.modifiers.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpAssignmentReplaceableWithOperatorAssignmentInspection | inspection.php.group.replacable.assignments | true | INFORMATION | com.jetbrains.php.lang.inspections.assignment.PhpAssignmentReplaceableWithOperatorAssignmentInspection | inspection.php.assignment.replaceable.with.operator.assignment.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpAssignmentReplaceableWithPrefixExpressionInspection | inspection.php.group.replacable.assignments | true | INFORMATION | com.jetbrains.php.lang.inspections.assignment.PhpAssignmentReplaceableWithPrefixExpressionInspection | inspection.php.assignment.replaceable.with.prefix.expression.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpConstructorStyleInspection | inspection.php.group.code.style | true | WARNING | com.jetbrains.php.lang.inspections.codeStyle.constructor.PhpConstructorStyleInspection | inspection.php.constructor.style.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpShortOpenTagInspection | inspection.php.group.code.style | true | WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpShortOpenTagInspection | inspection.php.short.open.tag.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpEchoOpenTagInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpEchoOpenTagInspection | inspection.php.open.echo.tag.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpShortOpenEchoTagInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpShortOpenEchoTagInspection | inspection.php.short.open.echo.tag.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpArrayMapCanBeConvertedToLoopInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpArrayMapCanBeConvertedToLoopInspection | inspection.php.array.map.can.be.converted.to.loop.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpLoopCanBeConvertedToArrayMapInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpLoopCanBeConvertedToArrayMapInspection | inspection.php.loop.can.be.converted.to.array.map.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpLoopCanBeConvertedToArrayFilterInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpLoopCanBeConvertedToArrayFilterInspection | inspection.php.loop.can.be.converted.to.array.filter.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpArrayFilterCanBeConvertedToLoopInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpArrayFilterCanBeConvertedToLoopInspection | inspection.php.array.filter.can.be.converted.to.loop.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpLoopCanBeConvertedToArrayFillInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpLoopCanBeConvertedToArrayFillInspection | inspection.php.loop.can.be.converted.to.array.fill.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpPowCallCanBeReplacedWithOperatorInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpPowCallCanBeReplacedWithOperatorInspection | inspection.php.pow.call.can.be.replace.with.pow.operator | messages.PhpBundle | |||
PHP | PHP | PhpClosureCanBeConvertedToFirstClassCallableInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpClosureCanBeConvertedToFirstClassCallableInspection | inspection.php.closure.can.be.converted.to.first.class.callable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpArrayFillCanBeConvertedToLoopInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpArrayFillCanBeConvertedToLoopInspection | inspection.php.array.fill.can.be.converted.to.loop.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDisabledExtensionStubsInspection | inspection.php.group.general | true | INFORMATION | com.jetbrains.php.lang.inspections.stubs.PhpDisabledExtensionStubsInspection | inspection.php.disabled.extension.stubs.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpComposerExtensionStubsInspection | inspection.php.group.composer | true | WARNING | com.jetbrains.php.lang.inspections.stubs.PhpComposerExtensionStubsInspection | inspection.php.composer.extension.stubs.inspection.display.name | messages.PhpBundle | |||
JSON | PHP | PhpDisabledQualityToolComposerInspection | inspection.php.group.composer | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpDisabledQualityToolComposerInspection | inspection.php.disabled.quality.tool.composer.inspection.display.name | messages.PhpBundle | |||
JSON | PHP | PhpNotInstalledPackagesInspection | inspection.php.group.composer | true | WEAK WARNING | com.jetbrains.php.composer.json.PhpNotInstalledPackagesInspection | inspection.php.not.installed.packages.inspection.display.name | messages.PhpBundle | |||
JSON | PHP | PhpComposerDuplicatedRequirementInspection | inspection.php.group.composer | true | WEAK WARNING | com.jetbrains.php.composer.json.PhpComposerDuplicatedRequirementInspection | inspection.php.composer.duplicated.requirement.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpIgnoredClassAliasDeclaration | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpIgnoredClassAliasDeclaration | inspection.php.ignored.class.alias.declaration.display.name | messages.PhpBundle | |||
PHP | PHP | PhpFormatFunctionParametersMismatchInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpFormatFunctionParametersMismatchInspection | inspection.php.format.function.parameters.mismatch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMethodMayBeStaticInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpMethodMayBeStaticInspection | inspection.php.method.may.be.static.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryDoubleQuotesInspection | inspection.php.group.code.style | false | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpUnnecessaryDoubleQuotesInspection | inspection.php.unnecessary.double.quotes.display.name | messages.PhpBundle | true | ||
PHP | PHP | PhpUnnecessaryLeadingBackslashInUseStatementInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpUnnecessaryLeadingBackslashInUseStatementInspection | inspection.php.unnecessary.leading.backslash.in.use.statement | messages.PhpBundle | true | ||
PHP | PHP | PhpUnnecessaryParenthesesInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpUnnecessaryParenthesesInspection | inspection.php.unnecessary.parentheses.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpExpressionWithoutClarifyingParenthesesInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpExpressionWithoutClarifyingParenthesesInspection | inspection.php.expression.without.clarifying.parentheses.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingFieldTypeInspection | inspection.php.group.type.compatibility | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpMissingFieldTypeInspection | inspection.php.missing.field.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingReturnTypeInspection | inspection.php.group.type.compatibility | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpMissingReturnTypeInspection | inspection.php.missing.return.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMissingParamTypeInspection | inspection.php.group.type.compatibility | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpMissingParamTypeInspection | inspection.php.missing.parameter.type.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnpackedArgumentTypeMismatchInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpUnpackedArgumentTypeMismatchInspection | inspection.php.unpacked.argument.type.mismatch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpClosureCanBeConvertedToShortArrowFunctionInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.PhpClosureCanBeConvertedToShortArrowFunctionInspection | inspection.php.closure.can.be.converted.to.short.arrow.function.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpFieldAssignmentTypeMismatchInspection | inspection.php.group.type.compatibility | true | WARNING | com.jetbrains.php.lang.inspections.type.PhpFieldAssignmentTypeMismatchInspection | inspection.php.field.assignment.type.mismatch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDuplicateSwitchCaseBodyInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpDuplicateSwitchCaseBodyInspection | inspection.php.duplicate.switch.case.body.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpSwitchCaseWithoutDefaultBranchInspection | inspection.php.group.probable.bugs | true | INFORMATION | com.jetbrains.php.lang.inspections.probablyBug.PhpSwitchCaseWithoutDefaultBranchInspection | inspection.php.switch.case.without.default.branch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDocFieldTypeMismatchInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpDocFieldTypeMismatchInspection | inspection.php.doc.field.type.mismatch.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpNestedTernaryExpressionUsageInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpNestedTernaryExpressionUsageInspection | inspection.php.nested.ternary.expression.usage.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpStatementWithoutBracesInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpStatementWithoutBracesInspection | inspection.php.statement.without.braces.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpStrFunctionsInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpStrFunctionsInspection | inspection.php.str.functions.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDuplicatedCharacterInStrFunctionCallInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpDuplicatedCharacterInStrFunctionCallInspection | inspection.php.duplicate.character.in.str.function.call | messages.PhpBundle | |||
PHP | PHP | PhpSingleStatementWithBracesInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpSingleStatementWithBracesInspection | inspection.php.single.statement.with.braces.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpCurlyBraceAccessSyntaxUsageInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpCurlyBraceAccessSyntaxUsageInspection | inspection.php.curly.brace.access.syntax.usage.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessarySemicolonInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpUnnecessarySemicolonInspection | inspection.php.unnecessary.semicolon.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP | PhpUnnecessarySpreadOperatorForFunctionCallArgumentInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpUnnecessarySpreadOperatorForFunctionCallArgumentInspection | inspection.php.unnecessary.spread.operator.for.function.call.argument | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryLocalVariableInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpUnnecessaryLocalVariableInspection | inspection.php.unnecessary.local.variable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpTernaryExpressionCanBeReplacedWithConditionInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpTernaryExpressionCanBeReplacedWithConditionInspection | inspection.php.ternary.expression.can.be.replaced.with.condition.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpTernaryExpressionCanBeReducedToShortVersionInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpTernaryExpressionCanBeReducedToShortVersionInspection | inspection.php.ternary.expression.can.be.replaced.with.short.version | messages.PhpBundle | |||
PHP | PHP | PhpParameterByRefIsNotUsedAsReferenceInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpParameterByRefIsNotUsedAsReferenceInspection | inspection.php.parameter.by.ref.is.not.used.as.reference.inspection.display.name | messages.PhpBundle | |||
PHP | PHP,Code style | PhpMissingVisibilityInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpMissingVisibilityInspection | inspection.php.missing.visibility.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpModifierOrderInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpModifierOrderInspection | inspection.php.modifier.order.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpVarUsageInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpVarUsageInspection | inspection.php.var.usage.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpNewClassMissingParameterListInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpNewClassMissingParameterListInspection | inspection.php.new.class.missing.parameter.list.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpSeparateElseIfInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpSeparateElseIfInspection | inspection.php.separate.else.if.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpCompoundNamespaceDepthInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpCompoundNamespaceDepthInspection | inspection.php.compound.namespace.depth.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpLongTypeFormInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpLongTypeFormInspection | inspection.php.long.type.form.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP,Code style | PhpTraitsUseListInspection | inspection.php.group.psr.12 | false | WEAK WARNING | com.jetbrains.php.lang.inspections.psr12.PhpTraitsUseListInspection | inspection.php.traits.use.list.inspection.display.name | messages.PhpBundle | true | ||
PHP | PHP | PhpExpressionWithSameOperandsInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpExpressionWithSameOperandsInspection | inspection.php.expression.with.same.operands.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpForeachOverSingleElementArrayLiteralInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpForeachOverSingleElementArrayLiteralInspection | inspection.php.foreach.over.single.element | messages.PhpBundle | |||
PHP | PHP | PhpInappropriateInheritDocUsageInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpInappropriateInheritDocUsageInspection | inspection.php.inappropriate.inherit.doc.usage.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpPrivateFieldCanBeLocalVariableInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpPrivateFieldCanBeLocalVariableInspection | inspection.php.private.field.can.be.local.variable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpArrayUsedOnlyForWriteInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpArrayUsedOnlyForWriteInspection | inspection.php.array.used.only.for.write.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpClassImplementsSolelyTraversableInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpClassImplementsSolelyTraversableInspection | inspection.php.class.implements.solely.traversable.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDocDuplicateTypeInspection | inspection.php.group.phpdoc | true | WEAK WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpDocDuplicateTypeInspection | inspection.php.doc.duplicate.type.inspection.display.name | messages.PhpBundle | |||
JSON | PHP | ComposerJsonFileReferencesInspection | inspection.php.group.composer | true | WARNING | com.jetbrains.php.composer.json.ComposerJsonFileReferencesInspection | inspection.composer.json.file.references.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryStopStatementInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpUnnecessaryStopStatementInspection | inspection.php.unnecessary.return.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryElseBranchInspection | inspection.php.group.control.flow | true | INFORMATION | com.jetbrains.php.lang.inspections.controlFlow.PhpUnnecessaryElseBranchInspection | inspection.php.unnecessary.else.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpInstanceofIsAlwaysTrueInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpInstanceofIsAlwaysTrueInspection | inspection.php.instanceof.is.always.true | messages.PhpBundle | |||
PHP | PHP | PhpInArrayCanBeReplacedWithComparisonInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpInArrayCanBeReplacedWithComparisonInspection | inspection.php.in.array.can.be.replaced.with.comparison | messages.PhpBundle | |||
PHP | PHP | PhpFuncGetArgCanBeReplacedWithParamInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpFuncGetArgCanBeReplacedWithParamInspection | inspection.php.func.get.arg.can.be.replaced.with.parameter.access | messages.PhpBundle | |||
PHP | PHP | PhpIdempotentOperationInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpIdempotentOperationInspection | inspection.php.idempotent.operation | messages.PhpBundle | |||
PHP | PHP | PhpModuloByOneInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpModuloByOneInspection | inspection.php.modulo.operation.with.one | messages.PhpBundle | |||
PHP | PHP | PhpFormatCallWithSingleArgumentInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpFormatCallWithSingleArgumentInspection | inspection.php.format.function.call.with.single.argument | messages.PhpBundle | |||
PHP | PHP | PhpInvalidInstanceofInspection | inspection.php.group.code.smell | true | WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpInvalidInstanceofInspection | inspection.php.invalid.instanceof.argument.type | messages.PhpBundle | |||
PHP | PHP | PhpRedundantTypeInUnionTypeInspection | inspection.php.group.type.compatibility | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpRedundantTypeInUnionTypeInspection | inspection.php.redundant.type.in.union.type | messages.PhpBundle | |||
PHP | PHP | PhpConditionAlreadyCheckedInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpConditionAlreadyCheckedInspection | inspection.php.condition.always.evaluates.to.constant | messages.PhpBundle | |||
PHP | PHP | PhpIntRangesMismatchInspection | inspection.php.group.phpdoc | true | WARNING | com.jetbrains.php.lang.inspections.phpdoc.PhpIntRangesMismatchInspection | inspection.php.int.ranges.mismatch | messages.PhpBundle | |||
PHP | PHP | PhpConditionCheckedByNextConditionInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpConditionCheckedByNextConditionInspection | inspection.php.condition.checked.by.next.condition | messages.PhpBundle | |||
PHP | PHP | PhpArrayWriteIsNotUsedInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpArrayWriteIsNotUsedInspection | inspection.php.array.write.access.is.not.used | messages.PhpBundle | |||
PHP | PHP | PhpRedundantOptionalArgumentInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpRedundantOptionalArgumentInspection | inspection.php.redundant.optional.argument | messages.PhpBundle | |||
PHP | PHP | PhpPropertyOnlyWrittenInspection | inspection.php.group.code.smell | true | WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPropertyOnlyWrittenInspection | inspection.php.property.only.written | messages.PhpBundle | |||
PHP | PHP | PhpToStringMayProduceExceptionInspection | inspection.php.group.code.smell | true | WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpToStringMayProduceExceptionInspection | inspection.php.to.string.may.produce.exception | messages.PhpBundle | |||
PHP | PHP | PhpLoopNeverIteratesInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpLoopNeverIteratesInspection | inspection.php.loop.never.iterates.name | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryStaticReferenceInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpUnnecessaryStaticReferenceInspection | inspection.unnecessary.static.reference | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryStringCastInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpUnnecessaryStringCastInspection | inspection.unnecessary.string.cast | messages.PhpBundle | |||
PHP | PHP | PhpArrayToStringConversionInspection | inspection.php.group.code.smell | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpArrayToStringConversionInspection | inspection.array.to.string.conversion | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryBoolCastInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpUnnecessaryBoolCastInspection | inspection.unnecessary.bool.cast | messages.PhpBundle | |||
PHP | PHP | PhpParameterNameChangedDuringInheritanceInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.classes.PhpParameterNameChangedDuringInheritanceInspection | inspection.php.parameter.name.chaged.during.inhertiance | messages.PhpBundle | |||
PHP | PHP | PhpNamedArgumentMightBeUnresolvedInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.classes.PhpNamedArgumentMightBeUnresolvedInspection | inspection.php.named.argument.may.be.unresolved | messages.PhpBundle | |||
PHP | PHP | PhpArgumentWithoutNamedIdentifierInspection | inspection.php.group.general | true | INFORMATION | com.jetbrains.php.lang.inspections.classes.PhpArgumentWithoutNamedIdentifierInspection | inspection.php.argument.without.name.identifier | messages.PhpBundle | |||
PHP | PHP | PhpNamedArgumentUsageInspection | inspection.php.group.general | true | INFORMATION | com.jetbrains.php.lang.inspections.classes.PhpNamedArgumentUsageInspection | inspection.php.named.argument.usage | messages.PhpBundle | |||
PHP | PHP | PhpNamedArgumentsWithChangedOrderInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.classes.PhpNamedArgumentsWithChangedOrderInspection | inspection.php.named.arguments.with.changed.order | messages.PhpBundle | |||
PHP | PHP | PhpMixedReturnTypeCanBeReducedInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpMixedReturnTypeCanBeReducedInspection | inspection.php.mixed.return.type.can.be.reduced | messages.PhpBundle | |||
PHP | PHP | PhpNullIsNotCompatibleWithParameterInspection | inspection.php.group.type.compatibility | true | ERROR | com.jetbrains.php.lang.inspections.type.PhpNullIsNotCompatibleWithParameterInspection | inspection.php.null.is.not.compatible.with.parameter | messages.PhpBundle | |||
PHP | PHP | PhpNestedDirNameCallsCanBeReplacedWithLevelParameterInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpNestedDirNameCallsCanBeReplacedWithLevelParameterInspection | inspection.php.nested.dirname.call.can.be.replaced.with.levels.usage | messages.PhpBundle | |||
PHP | PHP | PhpNestedMinMaxCallInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpNestedMinMaxCallInspection | inspection.php.nested.min.max.call | messages.PhpBundle | |||
PHP | PHP | PhpTraitUseRuleInsideDifferentClassUseListInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpTraitUseRuleInsideDifferentClassUseListInspection | inspection.php.trait.method.use.is.located.inside.different.target.class | messages.PhpBundle | |||
PHP | PHP | PhpTraitUsageOutsideUseInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpTraitUsageOutsideUseInspection | inspection.php.trait.usage | messages.PhpBundle | |||
PHP | PHP | PhpClassCantBeUsedAsAttributeInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpClassCantBeUsedAsAttributeInspection | inspection.php.class.cant.be.used.as.attribute | messages.PhpBundle | |||
PHP | PHP | PhpInapplicableAttributeTargetDeclarationInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpInapplicableAttributeTargetDeclarationInspection | inspection.php.inapplicable.attribute.target.declaration | messages.PhpBundle | |||
PHP | PHP | PhpExpectedValuesShouldBeUsedInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpExpectedValuesShouldBeUsedInspection | inspection.php.expected.values.should.be.used | messages.PhpBundle | |||
PHP | PHP | PhpImmutablePropertyIsWrittenInspection | inspection.php.group.attributes | true | ERROR | com.jetbrains.php.lang.inspections.attributes.PhpImmutablePropertyIsWrittenInspection | inspection.php.immutable.property.is.written.in.invalid.scope | messages.PhpBundle | |||
PHP | PHP | PhpAttributeIsNotRepeatableInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpAttributeIsNotRepeatableInspection | inspection.php.attribute.is.not.repeatable | messages.PhpBundle | |||
PHP | PHP | PhpNoReturnAttributeCanBeAddedInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpNoReturnAttributeCanBeAddedInspection | inspection.php.attribute.no.return.can.be.added | messages.PhpBundle | |||
PHP | PHP | PhpPureAttributeCanBeAddedInspection | inspection.php.group.attributes | true | INFORMATION | com.jetbrains.php.lang.inspections.attributes.PhpPureAttributeCanBeAddedInspection | inspection.php.pure.contract.attribute.can.be.added | messages.PhpBundle | |||
PHP | PHP | PhpPureFunctionMayProduceSideEffectsInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpPureFunctionMayProduceSideEffectsInspection | inspection.php.pure.function.may.produce.side.effect | messages.PhpBundle | |||
PHP | PHP | PhpAttributeCanBeAddedToOverriddenMemberInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpAttributeCanBeAddedToOverriddenMemberInspection | inspection.php.attribute.can.be.overridden | messages.PhpBundle | |||
PHP | PHP | PhpArrayShapeAttributeCanBeAddedInspection | inspection.php.group.attributes | true | INFORMATION | com.jetbrains.php.lang.inspections.attributes.PhpArrayShapeAttributeCanBeAddedInspection | inspection.php.attribute.array.shape.can.be.added | messages.PhpBundle | |||
PHP | PHP | PhpArrayKeyDoesNotMatchArrayShapeInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpArrayKeyDoesNotMatchArrayShapeInspection | inspection.php.array.key.does.not.match.array.shape | messages.PhpBundle | |||
PHP | PHP | PhpDuplicateMatchConditionInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpDuplicateMatchConditionInspection | inspection.php.duplicate.match.condition.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpLineCommentWillBeParsedAsAttributeInspection | inspection.php.group.attributes | true | WARNING | com.jetbrains.php.lang.inspections.attributes.PhpLineCommentWillBeParsedAsAttributeInspection | inspection.php.comment.will.be.parsed.as.attribute | messages.PhpBundle | |||
PHP | PHP | PhpRedundantAttributeParenthesisInspection | inspection.php.group.attributes | true | WEAK WARNING | com.jetbrains.php.lang.inspections.attributes.PhpRedundantAttributeParenthesisInspection | inspection.php.redundant.attribute.parenthesis | messages.PhpBundle | |||
PHP | PHP | PhpUnusedMatchConditionInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpUnusedMatchConditionInspection | inspection.php.unused.match.arm.condition.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpGetClassCanBeReplacedWithClassNameLiteralInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpGetClassCanBeReplacedWithClassNameLiteralInspection | inspection.php.get.class.can.be.replaced.with.class.name.literal.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpMatchExpressionWithOnlyDefaultArmInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpMatchExpressionWithOnlyDefaultArmInspection | inspection.php.redundant.match.expression | messages.PhpBundle | |||
PHP | PHP | PhpLoopCanBeReplacedWithStrRepeatInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpLoopCanBeReplacedWithStrRepeatInspection | inspection.php.loop.can.be.replaced.with.str.repeat | messages.PhpBundle | |||
PHP | PHP | PhpConcatenationWithEmptyStringCanBeInlinedInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpConcatenationWithEmptyStringCanBeInlinedInspection | inspection.php.concatenation.with.empty.string.can.be.merged | messages.PhpBundle | |||
PHP | PHP | PhpClassConstantAccessedViaChildClassInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpClassConstantAccessedViaChildClassInspection | inspection.php.class.constant.accessed.via.child.class | messages.PhpBundle | |||
PHP | PHP | PhpMatchExpressionCanBeReplacedWithTernaryInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpMatchExpressionCanBeReplacedWithTernaryInspection | inspection.php.match.expression.can.be.replaced.with.ternary | messages.PhpBundle | |||
PHP | PHP | PhpPromotedFieldUsageInspection | inspection.php.group.general | true | INFORMATION | com.jetbrains.php.lang.inspections.PhpPromotedFieldUsageInspection | inspection.php.promoted.field.usage | messages.PhpBundle | |||
PHP | PHP | PhpRandArgumentsInReverseOrderInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.probablyBug.PhpRandArgumentsInReverseOrderInspection | inspection.php.rand.arguments.in.revers.order | messages.PhpBundle | |||
PHP | PHP | PhpRedundantAssignmentToPromotedFieldInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpRedundantAssignmentToPromotedFieldInspection | inspection.php.redundant.assignment.to.promoted.field | messages.PhpBundle | |||
PHP | PHP | PhpFieldCanBePromotedInspection | inspection.php.group.general | true | INFORMATION | com.jetbrains.php.lang.inspections.PhpFieldCanBePromotedInspection | inspection.field.can.be.promoted | messages.PhpBundle | |||
PHP | PHP | PhpSwitchCanBeReplacedWithMatchExpressionInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpSwitchCanBeReplacedWithMatchExpressionInspection | inspection.php.switch.can.be.replaced.with.match.expression | messages.PhpBundle | |||
PHP | PHP | PhpMatchCanBeReplacedWithSwitchStatementInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpMatchCanBeReplacedWithSwitchStatementInspection | inspection.php.match.can.be.replaced.with.switch.statement | messages.PhpBundle | |||
PHP | PHP | PhpImplicitOctalLiteralUsageInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.PhpImplicitOctalLiteralUsageInspection | inspection.php.implicit.octal.literal.can.be.replaced.with.explicit.one | messages.PhpBundle | |||
PHP | PHP | PhpCatchWithInstanceOfCanBeReplacedWithSpecificCatchesInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpCatchWithInstanceOfCanBeReplacedWithSpecificCatchesInspection | inspection.php.instanceof.checks.in.catch.can.be.replaced.with.specific.catches | messages.PhpBundle | |||
PHP | PHP | PhpDuplicateCatchBodyInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpDuplicateCatchBodyInspection | inspection.php.duplicate.switch.catch.body.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDuplicateOperandInComparisonInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpDuplicateOperandInComparisonInspection | inspection.php.duplicate.operand.in.comparison | messages.PhpBundle | |||
PHP | PHP | PhpExceptionImmediatelyRethrownInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpExceptionImmediatelyRethrownInspection | inspection.php.exception.is.immediately.rethrown | messages.PhpBundle | |||
PHP | PHP | PhpDuplicateMatchArmBodyInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpDuplicateMatchArmBodyInspection | inspection.php.duplicate.match.arm.body.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpIncorrectMagicMethodSignatureInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.classes.PhpIncorrectMagicMethodSignatureInspection | inspection.php.incorrect.magic.method.signature.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpArrayAccessOnIllegalTypeInspection | inspection.php.group.type.compatibility | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpArrayAccessOnIllegalTypeInspection | inspection.php.array.access.on.illegal.type.display.name | messages.PhpBundle | |||
PHP | PHP | PhpDefineConstantNameStartsWithLeadingSlashInspection | inspection.php.group.code.smell | true | WARNING | com.jetbrains.php.lang.inspections.PhpDefineConstantNameStartsWithLeadingSlashInspection | inspection.php.define.constant.name.with.leading.slash | messages.PhpBundle | |||
PHP | PHP | PhpDefineCanBeReplacedWithConstInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpDefineCanBeReplacedWithConstInspection | inspection.php.define.constant.can.be.replaced.with.const.syntax | messages.PhpBundle | |||
PHP | PHP | PhpIfWithCommonPartsInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpIfWithCommonPartsInspection | if.with.common.parts | messages.PhpBundle | |||
PHP | PHP | PhpSwitchWithCommonPartsInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpSwitchWithCommonPartsInspection | switch.with.common.parts | messages.PhpBundle | |||
PHP | PHP | PhpWriteAccessToReferencedArrayValueWithoutUnsetInspection | inspection.php.group.control.flow | true | WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpWriteAccessToReferencedArrayValueWithoutUnsetInspection | inspection.php.write.access.to.referenced.array.value.without.unset | messages.PhpBundle | |||
PHP | PHP | PhpBooleanCanBeSimplifiedInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpBooleanCanBeSimplifiedInspection | inspection.php.boolean.expression.can.be.simplified | messages.PhpBundle | |||
PHP | PHP | PhpArraySearchInBooleanContextInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpArraySearchInBooleanContextInspection | inspection.php.array.search.can.be.replaced.with.in.array | messages.PhpBundle | |||
PHP | PHP | PhpArrayPushWithOneElementInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpArrayPushWithOneElementInspection | inspection.php.array.push.with.single.element | messages.PhpBundle | |||
PHP | PHP | PhpArrayAccessCanBeReplacedWithForeachValueInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpArrayAccessCanBeReplacedWithForeachValueInspection | inspection.array.access.can.be.replaced.with.foreach.value | messages.PhpBundle | |||
PHP | PHP | PhpDangerousArrayInitializationInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpDangerousArrayInitializationInspection | inspection.message.dangerous.array.initialization | messages.PhpBundle | |||
PHP | PHP | PhpCommentCanBeReplacedWithNamedArgumentInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpCommentCanBeReplacedWithNamedArgumentInspection | inspection.message.comment.can.be.replaced.with.named.argument | messages.PhpBundle | |||
PHP | PHP | PhpForeachVariableOverwritesAlreadyDefinedVariableInspection | inspection.php.group.control.flow | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpForeachVariableOverwritesAlreadyDefinedVariableInspection | inspection.php.foreach.variable.overwrite.already.defined.variable | messages.PhpBundle | |||
PHP | PHP | PhpArrayIsAlwaysEmptyInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.dfa.PhpArrayIsAlwaysEmptyInspection | inspection.php.accessed.array.is.always.empty | messages.PhpBundle | |||
PHP | PHP | PhpIfCanBeMergedWithSequentialConditionInspection | inspection.php.group.code.smell | true | INFORMATION | com.jetbrains.php.lang.inspections.PhpIfCanBeMergedWithSequentialConditionInspection | inspection.php.if.can.be.merged.with.sequential.condition | messages.PhpBundle | |||
PHP | PHP | PhpConcatenationWithArithmeticInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.PhpConcatenationWithArithmeticInspection | inspection.php.concatenation.with.arithmetic.usage | messages.PhpBundle | |||
PHP | PHP | PhpSameParameterValueInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpSameParameterValueInspection | inspection.php.parameter.always.have.same.value | messages.PhpBundle | |||
PHP | PHP | PhpSwitchStatementWitSingleBranchInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpSwitchStatementWitSingleBranchInspection | inspection.switch.with.single.case | messages.PhpBundle | |||
PHP | PHP | PhpReturnValueOfMethodIsNeverUsedInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpReturnValueOfMethodIsNeverUsedInspection | inspection.php.method.return.value.is.never.used | messages.PhpBundle | |||
PHP | PHP | PhpIssetCanBeReplacedWithCoalesceInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpIssetCanBeReplacedWithCoalesceInspection | inspection.php.isset.can.be.replaced.with.coalesce | messages.PhpBundle | |||
PHP | PHP | PhpCastIsUnnecessaryInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpCastIsUnnecessaryInspection | inspection.php.cast.is.unnecessary | messages.PhpBundle | |||
PHP | PHP | PhpCastIsEvaluableInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpCastIsEvaluableInspection | inspection.php.cast.is.evaluable | messages.PhpBundle | |||
PHP | PHP | PhpUnnecessaryCurlyVarSyntaxInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpUnnecessaryCurlyVarSyntaxInspection | inspection.php.unnecessary.curly.variable.syntax | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedDollarBraceStringInterpolationInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedDollarBraceStringInterpolationInspection | inspection.php.deprecated.dollar.brace.string.interpolation | messages.PhpBundle | DEPRECATED_ATTRIBUTES | ||
PHP | PHP | PhpStrictComparisonWithOperandsOfDifferentTypesInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpStrictComparisonWithOperandsOfDifferentTypesInspection | inspection.php.strict.comparison.of.operands.with.different.types | messages.PhpBundle | |||
PHP | PHP | PhpSuspiciousNameCombinationInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpSuspiciousNameCombinationInspection | inspection.php.suspicious.name.combination.inspection.name | messages.PhpBundle | |||
PHP | PHP | PhpContinueTargetingSwitchInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpContinueTargetingSwitchInspection | inspection.php.continue.targeting.switch | messages.PhpBundle | |||
PHP | PHP | PhpRedundantDefaultBreakContinueArgumentInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpRedundantDefaultBreakContinueArgumentInspection | inspection.php.redundant.continue.break.argument | messages.PhpBundle | |||
PHP | PHP | PhpRedundantArrayCallInForeachIteratedValueInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpRedundantArrayCallInForeachIteratedValueInspection | inspection.php.redundant.array.call.in.foreach.iterated.value | messages.PhpBundle | |||
PHP | PHP | PhpPluralMixedCanBeReplacedWithArrayInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpPluralMixedCanBeReplacedWithArrayInspection | inspection.php.plural.mixed.can.be.replaced.with.array | messages.PhpBundle | |||
PHP | PHP | PhpRedundantMethodOverrideInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpRedundantMethodOverrideInspection | inspection.php.redundant.method.override | messages.PhpBundle | |||
PHP | PHP | PhpLoopCanBeReplacedWithImplodeInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpLoopCanBeReplacedWithImplodeInspection | inspection.php.loop.can.be.replaced.with.implode | messages.PhpBundle | |||
PHP | PHP | PhpUncoveredEnumCasesInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpUncoveredEnumCasesInspection | inspection.php.uncovered.enum.cases | messages.PhpBundle | |||
PHP | PHP | PhpUnusedSwitchBranchInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpUnusedSwitchBranchInspection | inspection.php.unused.switch.case.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpVarExportUsedWithoutReturnArgumentInspection | inspection.php.group.probable.bugs | true | WEAK WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpVarExportUsedWithoutReturnArgumentInspection | inspection.php.var.export.used.without.return.argument | messages.PhpBundle | |||
PHP | PHP | PhpCaseWithValueNotFoundInEnumInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.probablyBug.PhpCaseWithValueNotFoundInEnumInspection | inspection.php.enum.case.with.value.not.found | messages.PhpBundle | |||
RegExp | PHP | PhpCoveredCharacterInClassInspection | inspection.php.group.regexp | true | WEAK WARNING | com.jetbrains.php.lang.inspections.regexp.PhpCoveredCharacterInClassInspection | inspection.php.covered.element.in.class | messages.PhpBundle | |||
RegExp | PHP | PhpRangesInClassCanBeMergedInspection | inspection.php.group.regexp | true | WEAK WARNING | com.jetbrains.php.lang.inspections.regexp.PhpRangesInClassCanBeMergedInspection | inspection.php.ranges.in.class.can.re.merged | messages.PhpBundle | |||
PHP | PHP | PhpRegExpRedundantModifierInspection | inspection.php.group.regexp | true | WEAK WARNING | com.jetbrains.php.lang.inspections.regexp.PhpRegExpRedundantModifierInspection | inspection.php.redundant.modifier.key | messages.PhpBundle | |||
PHP | PHP | PhpRegExpUnsupportedModifierInspection | inspection.php.group.regexp | true | WARNING | com.jetbrains.php.lang.inspections.regexp.PhpRegExpUnsupportedModifierInspection | inspection.php.unsupported.modifier.key | messages.PhpBundle | |||
PHP | PHP | PhpRegExpInvalidDelimiterInspection | inspection.php.group.regexp | true | WARNING | com.jetbrains.php.lang.inspections.regexp.PhpRegExpInvalidDelimiterInspection | inspection.php.invalid.delimiter.key | messages.PhpBundle | |||
PHP | PHP | PhpConditionCanBeReplacedWithMinMaxCallInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpConditionCanBeReplacedWithMinMaxCallInspection | inspection.php.condition.can.be.replaced.with.min.max.call | messages.PhpBundle | |||
PHP | PHP | PhpArrayIndexResetIsUnnecessaryInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.controlFlow.PhpArrayIndexResetIsUnnecessaryInspection | inspection.php.internal.array.index.reset.is.unnecessary | messages.PhpBundle | |||
PHP | PHP | PhpAccessingStaticMembersOnTraitInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpAccessingStaticMembersOnTraitInspection | inspection.php.acessing.static.trait.members | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedStdLibCallInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedStdLibCallInspection | inspection.php.deprecated.stdlib.call | messages.PhpBundle | |||
PHP | PHP | PhpArrayIndexImmediatelyRewrittenInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpArrayIndexImmediatelyRewrittenInspection | inspection.php.array.index.immediately.rewritten | messages.PhpBundle | |||
PHP | PHP | PhpFieldImmediatelyRewrittenInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpFieldImmediatelyRewrittenInspection | inspection.php.field.immediately.rewritten | messages.PhpBundle | |||
PHP | PHP | PhpObjectFieldsAreOnlyWrittenInspection | inspection.php.group.probable.bugs | true | WARNING | com.jetbrains.php.lang.inspections.probablyBug.PhpObjectFieldsAreOnlyWrittenInspection | inspection.php.object.fields.are.only.written | messages.PhpBundle | |||
PHP | PHP | PhpSecondWriteToReadonlyPropertyInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpSecondWriteToReadonlyPropertyInspection | inspection.php.second.write.to.readonly.property | messages.PhpBundle | |||
PHP | PHP | PhpReadonlyPropertyWrittenOutsideDeclarationScopeInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpReadonlyPropertyWrittenOutsideDeclarationScopeInspection | inspection.php.write.access.to.readonly.property.outside.declaration.scope | messages.PhpBundle | |||
PHP | PHP | PhpRedundantIntersectionTypeInspection | inspection.php.group.type.compatibility | true | WEAK WARNING | com.jetbrains.php.lang.inspections.type.PhpRedundantIntersectionTypeInspection | inspection.redundant.intersection.type | messages.PhpBundle | |||
PHP | PHP | PhpAutovivificationOnFalseValuesInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpAutovivificationOnFalseValuesInspection | inspection.php.autovivification.on.false.values | messages.PhpBundle | |||
PHP | PHP | PhpIfCanBeReplacedWithMatchExpressionInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpIfCanBeReplacedWithMatchExpressionInspection | inspection.php.if.can.be.replaced.with.match.expression | messages.PhpBundle | |||
PHP | PHP | PhpClassConstantCanBeFinalInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpClassConstantCanBeFinalInspection | inspection.php.class.constant.can.be.final | messages.PhpBundle | |||
PHP | PHP | PhpCombineMultipleIssetCallsIntoOneInspection | inspection.php.group.code.style | true | INFORMATION | com.jetbrains.php.lang.inspections.codeStyle.PhpCombineMultipleIssetCallsIntoOneInspection | inspection.php.multiple.isset.calls.can.be.replaced.with.one | messages.PhpBundle | |||
PHP | PHP | PhpArrayAppendUsingCountInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpArrayAppendUsingCountInspection | inspection.php.array.append.using.count | messages.PhpBundle | |||
PHP | PHP | PhpPointlessBooleanExpressionInConditionInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpPointlessBooleanExpressionInConditionInspection | inspection.php.pointless.boolean.expression | messages.PhpBundle | |||
PHP | PHP | PhpPropertyCanBeReadonlyInspection | inspection.php.group.general | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpPropertyCanBeReadonlyInspection | inspection.php.property.can.be.readonly | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedAutoloadDeclarationInspection | inspection.php.group.general | true | WARNING | com.jetbrains.php.lang.inspections.PhpDeprecatedAutoloadDeclarationInspection | inspection.php.autoload.declaration.is.deprecated | messages.PhpBundle | |||
PHP | PHP | PhpDeprecatedAssertDeclarationInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.PhpDeprecatedAssertDeclarationInspection | inspection.php.assert.declaration.is.deprecated | messages.PhpBundle | |||
PHP | PHP | PhpAccessStaticViaInstanceInspection | inspection.php.group.general | false | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpAccessStaticViaInstanceInspection | inspection.php.class.static.member.accessed.via.instance.inspection.display.name | messages.PhpBundle | |||
PHP | PHP | PhpLoopCanBeReplacedWithStdFunctionCallsInspection | inspection.php.group.code.smell | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeSmell.PhpLoopCanBeReplacedWithStdFunctionCallsInspection | inspection.php.loop.can.be.replaced.with.in.array | messages.PhpBundle | |||
PHP | PHP | PhpArrayTraversableCanBeReplacedWithIterableInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpArrayTraversableCanBeReplacedWithIterableInspection | inspection.php.array.traversable.can.be.replaced.with.iterable | messages.PhpBundle | |||
PHP | PHP | PhpVariableIsUsedOnlyInClosureInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.codeStyle.PhpVariableIsUsedOnlyInClosureInspection | inspection.php.name.variable.is.used.only.inside.closure | messages.PhpBundle | |||
PHP | PHP | PhpRedundantReadonlyModifierInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpRedundantReadonlyModifierInspection | inspection.message.readonly.modifier.redundant | messages.PhpBundle | |||
PHP | PHP | PhpClassCanBeReadonlyInspection | inspection.php.group.code.style | true | WEAK WARNING | com.jetbrains.php.lang.inspections.PhpClassCanBeReadonlyInspection | inspection.message.class.can.be.readonly | messages.PhpBundle | |||
PHP | PHP | PhpUnpackingArraysWithStringKeysInspection | inspection.php.group.general | true | ERROR | com.jetbrains.php.lang.inspections.controlFlow.PhpUnpackingArraysWithStringKeysInspection | inspection.php.unpacking.arrays.with.string.keys.inspection | messages.PhpBundle | |||
PHP | PHP | PhpNModifierCanBeReplacedWithNonCapturingGroupInspection | inspection.php.group.general | true | INFORMATION | com.jetbrains.php.lang.inspections.regexp.PhpNModifierCanBeReplacedWithNonCapturingGroupInspection | inspection.php.regexp.n.modifier.can.be.replaced.with.non.capturing.groups | messages.PhpBundle | |||
PHP | PHP | PhpRedeclarationStdlibFunctionInspection | inspection.php.group.probable.bugs | true | ERROR | com.jetbrains.php.lang.inspections.probablyBug.PhpRedeclarationStdlibFunctionInspection | inspection.php.redeclaration.stdlib.function | messages.PhpBundle |
Thank you, @jorgecc !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Missing the:
inspect 'switch' can be replaced with 'match' expression