2018-09-14 18:01:40 +02:00
includes :
2020-04-25 16:42:43 +02:00
- utils/phpstan-extensions/config/phpstan-extensions.neon
2020-08-23 15:39:26 +02:00
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
2020-04-25 16:42:43 +02:00
- vendor/symplify/phpstan-extensions/config/config.neon
- vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
2018-09-14 18:01:40 +02:00
2020-05-03 16:16:10 +02:00
# see https://github.com/symplify/coding-standard
- vendor/symplify/coding-standard/config/symplify-rules.neon
2020-09-23 11:16:40 +02:00
services :
2020-09-24 20:54:39 +02:00
# require constant in argument position
2020-10-01 21:45:29 +02:00
-
class : Symplify\CodingStandard\Rules\RequireMethodCallArgumentConstantRule
tags : [ phpstan.rules.rule]
arguments :
constantArgByMethodByType :
Symfony\Component\Console\Command\Command :
addArgument : [ 0 ]
addOption : [ 0 ]
Symfony\Component\Console\Input\InputInterface :
getOption : [ 0 ]
getArgument : [ 0 ]
PhpParser\Node :
getAttribute : [ 0 ]
setAttribute : [ 0 ]
2020-09-24 20:54:39 +02:00
2020-09-23 11:16:40 +02:00
-
class : Symplify\CodingStandard\Rules\SeeAnnotationToTestRule
tags : [ phpstan.rules.rule]
arguments :
requiredSeeTypes :
- PHPStan\Rules\Rule
- Rector\Core\Rector\AbstractRector
- Rector\FileSystemRector\Rector\AbstractFileSystemRector
-
class : Symplify\CodingStandard\Rules\NoStaticCallRule
tags : [ phpstan.rules.rule]
arguments :
allowedStaticCallClasses :
- PHPStan\Type\VerbosityLevel
- Rector\NodeTypeResolver\ClassExistenceStaticHelper
# this rule prevents bug in phar like these: https://github.com/rectorphp/rector/pull/3692/files
-
class : Symplify\CodingStandard\Rules\RequireStringArgumentInMethodCallRule
tags : [ phpstan.rules.rule]
arguments :
stringArgByMethodByType :
Rector\Core\Rector\AbstractRector :
isObjectType : [ 1 ]
-
class : Symplify\CodingStandard\Rules\ClassNameRespectsParentSuffixRule
tags : [ phpstan.rules.rule]
arguments :
parentClasses :
- Rector
-
class : Symplify\CodingStandard\Rules\PreferredClassRule
tags : [ phpstan.rules.rule]
arguments :
oldToPrefferedClasses :
# prevent PHPStorm autocomplete mess
'Symfony\Component\DependencyInjection\Variable' : 'PhpParser\Node\Expr\Variable'
'phpDocumentor\Reflection\Types\Expression' : 'PhpParser\Node\Stmt\Expression'
'phpDocumentor\Reflection\DocBlock\Tags\Param' : 'PhpParser\Node\Param'
'phpDocumentor\Reflection\DocBlock\Tags\Return_' : 'PhpParser\Node\Stmt\Return_'
'Closure' : 'PhpParser\Node\Expr\Closure'
'PHPUnit\TextUI\Configuration\Variable' : 'PhpParser\Node\Expr\Variable'
'PhpCsFixer\FixerDefinition\CodeSample' : 'Rector\Core\RectorDefinition\CodeSample'
'SebastianBergmann\Type\MixedType' : 'PHPStan\Type\MixedType'
'Hoa\Protocol\Node\Node' : 'PhpParser\Node'
'Nette\Utils\FileSystem' : 'Symplify\SmartFileSystem\SmartFileSystem'
'Symfony\Component\Filesystem\Filesystem' : 'Symplify\SmartFileSystem\SmartFileSystem'
2020-07-13 11:46:55 +02:00
2017-11-06 11:40:43 +01:00
parameters :
2019-12-28 11:33:33 +01:00
level : max
2019-12-08 22:00:38 +01:00
2020-05-03 16:16:10 +02:00
# see https://github.com/symplify/coding-standard
symplify :
2020-09-07 17:40:46 +02:00
max_method_cognitive_complexity: 9 # default : 8
2020-08-11 12:59:04 +02:00
max_class_cognitive_complexity : 50
2019-07-09 11:27:55 -03:00
# to allow installing with various phsptan versions without reporting old errors here
2020-07-27 08:56:25 +02:00
reportUnmatchedIgnoredErrors : false
2018-10-18 22:42:58 +02:00
2020-05-07 01:10:51 +02:00
checkGenericClassInNonGenericObjectType : false
2020-06-08 00:19:29 +02:00
scanDirectories :
2019-09-10 14:49:07 +02:00
- stubs
2020-08-03 09:26:01 +02:00
bootstrapFiles :
- vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php
2020-02-06 20:15:36 +01:00
paths :
2020-02-11 14:11:47 +01:00
- bin
2020-02-06 20:15:36 +01:00
- src
2020-02-11 14:11:47 +01:00
- rules
2020-02-06 20:15:36 +01:00
- packages
- tests
- compiler/src
2020-05-07 01:10:51 +02:00
- utils
2020-08-25 00:26:14 +02:00
# this cannot be put it, because it wipes PHPStan cache on each run :( - must run in separate
2020-09-23 11:16:40 +02:00
#- config
2020-02-06 20:15:36 +01:00
2018-09-14 18:01:40 +02:00
excludes_analyse :
2020-08-11 12:59:04 +02:00
# iterable types
- '#with no value type specified in iterable type array#'
- '#type specified in iterable type (array|iterable)#'
2020-05-10 23:02:46 +02:00
# phsptan bug
- utils/phpstan-extensions/src/Rule/PreventParentMethodVisibilityOverrideRule.php
- utils/phpstan-extensions/src/Rule/KeepRectorNamespaceForRectorRule.php
2020-07-29 00:09:47 +02:00
- packages/rector-generator/templates/*
2020-05-10 23:02:46 +02:00
2020-04-01 03:55:44 +02:00
# generated files
2020-04-03 15:28:29 +02:00
- 'packages/doctrine-annotation-generated/src/ConstantPreservingDocParser.php'
- 'packages/doctrine-annotation-generated/src/ConstantPreservingAnnotationReader.php'
2019-09-15 20:54:06 +02:00
- "*/Expected/*"
2019-02-21 15:36:16 +01:00
# complex printer
2019-03-09 12:55:17 +00:00
- '*tests/Rector/MethodCall/RenameMethodRector/**/SomeClass.php'
2018-09-14 18:01:40 +02:00
# tests files
2019-03-27 17:46:25 +01:00
- '*tests/*/Fixture/*'
- '*tests/*/Source/*'
- '*tests/Source/*'
2018-10-21 21:43:47 +02:00
# part of composer
2019-05-23 08:02:49 +02:00
- '*/tests/Rector/Psr4/MultipleClassFileToPsr4ClassesRector/Expected/Just*ExceptionWithoutNamespace.php'
2018-09-14 18:01:40 +02:00
2020-08-30 23:29:39 +02:00
# tests
- tests/DependencyInjection/config
2017-11-06 11:40:43 +01:00
ignoreErrors :
2020-08-11 12:59:04 +02:00
# @todo remove
# iterable types
- '#with no value type specified in iterable type array#'
- '#type specified in iterable type (array|iterable)#'
2019-01-12 20:36:34 +01:00
# false positive
- '#PHPDoc tag \@param for parameter \$node with type float is incompatible with native type PhpParser\\Node#'
2019-07-09 11:27:55 -03:00
# misuse of interface and class
2019-01-14 23:05:14 +01:00
- '#Parameter \#1 (.*?) expects Symfony\\Component\\DependencyInjection\\ContainerBuilder, Symfony\\Component\\DependencyInjection\\ContainerInterface given#'
2018-10-22 19:17:17 +02:00
- '#Strict comparison using === between string and null will always evaluate to false#'
2018-07-25 13:06:07 +02:00
2019-07-09 11:27:55 -03:00
# false positive - type is set by annotation above
2018-11-07 21:53:19 +01:00
- '#Array \(array<PhpParser\\Node\\Stmt>\) does not accept PhpParser\\Node#'
2018-08-31 00:57:59 +02:00
2019-07-09 11:27:55 -03:00
# irrelevant
2018-10-22 12:43:10 +02:00
- '#Call to function in_array\(\) with arguments string, (.*?) and true will always evaluate to false#'
2018-07-25 13:06:07 +02:00
# known values
2018-12-15 13:47:01 +01:00
- '#Access to an undefined property PhpParser\\Node\\Expr::\$right#'
2019-06-09 07:08:08 +02:00
2018-08-15 00:12:41 +02:00
- '#Access to an undefined property PhpParser\\Node\\Expr\\MethodCall\|PhpParser\\Node\\Stmt\\ClassMethod::\$params#'
2019-01-14 23:05:14 +01:00
- '#Cannot call method getName\(\) on PHPStan\\Reflection\\ClassReflection\|null#'
2019-01-14 15:10:41 +01:00
2018-10-15 21:30:38 +08:00
# false positive, has annotation type above
2018-10-21 12:32:51 +02:00
- '#Method Rector\\CodeQuality\\Rector\\Foreach_\\SimplifyForeachToCoalescingRector\:\:matchReturnOrAssignNode\(\) should return PhpParser\\Node\\Expr\\Assign\|PhpParser\\Node\\Stmt\\Return_\|null but returns PhpParser\\Node\|null#'
2018-11-07 18:22:27 +01:00
- '#Access to an undefined property PhpParser\\Node::\$(\w+)#'
2018-10-21 12:32:51 +02:00
2018-04-09 00:08:05 +02:00
# intentionally incorrect - part of the test
2020-02-06 22:48:18 +01:00
- '#Parameter \#2 \$codeSamples of class Rector\\Core\\RectorDefinition\\RectorDefinition constructor expects array<Rector\\Core\\Contract\\RectorDefinition\\CodeSampleInterface>, array<int, stdClass> given#'
2018-08-01 11:53:26 +02:00
2017-11-06 13:58:51 +01:00
# known values
2018-10-07 17:53:59 +08:00
- '#Cannot access property \$value on PhpParser\\Node\\Expr\\ArrayItem\|null#'
2018-04-02 15:17:12 +02:00
2019-01-14 19:21:23 +01:00
# known values
- '#Strict comparison using === between PhpParser\\Node\\Expr and null will always evaluate to false#'
2019-02-02 13:27:03 +01:00
2019-02-17 02:13:29 +01:00
- '#Access to an undefined property PhpParser\\Node\\Stmt\:\:\$expr#'
- '#Cannot access property \$stmts on PhpParser\\Node\\Stmt\\Else_\|null#'
2019-02-11 23:35:20 +01:00
2019-02-17 13:50:24 +01:00
# node finder
2019-02-18 18:46:36 +01:00
- '#Method Rector\\(.*?) should return array<PhpParser\\Node\\(.*?)> but returns array<PhpParser\\Node\>#'
2019-02-17 13:50:24 +01:00
2019-02-11 23:35:20 +01:00
# part of test
2019-02-28 22:50:53 +01:00
- '#(.*?)(AttributeAwareNodeInterface|AttributeAware(.*?)TagValueNode)(.*?)#'
- '#Parameter \#1 \$children of class PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode constructor expects array<PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocChildNode\>, array<int, PHPStan\\PhpDocParser\\Ast\\Node\> given#'
2019-03-13 01:49:15 +01:00
- '#Method Rector\\PHPUnit\\Rector\\MethodCall\\ReplaceAssertArraySubsetRector\:\:matchArray\(\) should return PhpParser\\Node\\Expr\\Array_\|null but returns PhpParser\\Node\\Expr#'
2019-03-18 12:10:33 +01:00
2019-03-26 23:56:10 +01:00
- '#(.*?)PhpParser\\Node\\Expr\\Error\|PhpParser\\Node\\Expr\\Variable given#'
2019-03-27 17:46:25 +01:00
# false positive 0.11.5
- '#Unreachable statement \- code above always terminates#'
2019-03-31 14:45:15 +02:00
- '#Negated boolean expression is always true#'
2019-03-31 21:30:26 +02:00
- '#Strict comparison using \=\=\= between PhpParser\\Node and null will always evaluate to false#'
2019-04-14 00:37:05 +02:00
# known types
2019-04-25 15:28:01 +02:00
- '#Access to an undefined property PhpParser\\Node\\Expr\\Error\|PhpParser\\Node\\Expr\\Variable\:\:\$name#'
2019-05-07 15:37:50 +02:00
- '#Strict comparison using \=\=\= between PhpParser\\Node\\Expr\\ArrayItem and null will always evaluate to false#'
2019-05-09 15:30:39 +02:00
- '#Parameter \#2 \.\.\.\$args of function array_merge expects array, array<int, string\>\|false given#'
2019-05-11 15:22:57 +02:00
- '#Access to an undefined property PhpParser\\Node\\Expr\:\:\$args#'
2019-05-11 15:07:00 +02:00
2020-02-06 22:48:18 +01:00
- '#Parameter \#2 \$name of method Rector\\Core\\Rector\\AbstractRector\:\:isName\(\) expects string, string\|null given#'
2019-07-09 11:27:55 -03:00
# cascade irrelevant
2019-05-19 23:44:38 +02:00
- '#Parameter (.*?) expects array<PhpParser\\Node\\Stmt\>, array<PhpParser\\Node\> given#'
2019-05-23 19:32:46 +02:00
# known value
2019-05-25 18:36:53 +02:00
- '#Cannot cast array<string\>\|bool\|string\|null to string#'
2019-06-04 17:41:23 +03:00
2019-07-22 12:49:50 +02:00
# array is callable
2019-08-04 13:05:40 +02:00
- '#If condition is always true#'
2019-08-03 21:41:46 +02:00
2019-08-06 11:14:50 +02:00
- '#Ternary operator condition is always true#'
2019-08-19 16:52:02 +02:00
2019-08-31 10:08:37 +02:00
- '#Access to an undefined property PhpParser\\Node\\FunctionLike\|PhpParser\\Node\\Stmt\\ClassLike\:\:\$stmts#'
2019-08-19 16:52:02 +02:00
2019-09-01 22:38:31 +02:00
- '#Property Rector\\TypeDeclaration\\TypeInferer\\(.*?)\:\:\$(.*?)TypeInferers \(array<Rector\\TypeDeclaration\\Contract\\TypeInferer\\(.*?)TypeInfererInterface\>\) does not accept array<Rector\\TypeDeclaration\\Contract\\TypeInferer\\PriorityAwareTypeInfererInterface\>#'
# sense-less errors
2020-07-06 01:57:19 +02:00
# 3rd party
-
message : '#Use default null value and nullable compare instead of isset on object#'
path : 'rules/symfony/src/ServiceMapProvider.php'
2019-09-04 14:10:29 +02:00
2019-08-19 16:52:02 +02:00
# PHP 7.4 1_000 support
- '#Property PhpParser\\Node\\Scalar\\DNumber\:\:\$value \(float\) does not accept string#'
- '#Call to function is_string\(\) with float will always evaluate to false#'
2019-09-14 18:11:14 +02:00
2019-11-04 01:48:08 +01:00
- '#Method Rector\\NodeTypeResolver\\PHPStan\\Type\\TypeFactory\:\:createUnionOrSingleType\(\) should return PHPStan\\Type\\MixedType\|PHPStan\\Type\\UnionType but returns PHPStan\\Type\\Type#'
2019-11-04 17:30:10 +01:00
2019-11-06 13:29:43 +01:00
# test
- '#Class Rector\\DynamicTypeAnalysis\\Tests\\Rector\\ClassMethod\\AddArgumentTypeWithProbeDataRector\\Fixture\\SomeClass not found#'
2019-11-14 17:48:46 +01:00
2019-12-08 11:03:08 +01:00
-
2020-07-29 01:41:20 +02:00
message : '#Class Rector\\Generic\\Tests\\Rector\\StaticCall\\SwapClassMethodArgumentsRector\\Fixture\\SomeClass not found#'
path : rules/generic/tests/Rector/StaticCall/SwapClassMethodArgumentsRector/SwapClassMethodArgumentsRectorTest.php
2019-12-08 18:01:29 +01:00
2020-06-19 15:37:24 +02:00
# internal rule
- '#Class "Rector\\Utils\\(.*?)" is missing @see annotation with test case class reference#'
2019-12-08 22:00:38 +01:00
# mixed
- '#Offset int\|string\|null does not exist on array<PhpParser\\Node\\Stmt>\|null#'
- '#class-string<T of object>\|T of object#'
# known values
- '#Offset 0 does not exist on array<PhpParser\\Node\\Stmt>\|null#'
- '#Parameter \#1 \$left of class PhpParser\\Node\\Expr\\BinaryOp\\Spaceship constructor expects PhpParser\\Node\\Expr, PhpParser\\Node\\Expr\|null given#'
- '#Parameter \#2 \$right of class PhpParser\\Node\\Expr\\BinaryOp\\Spaceship constructor expects PhpParser\\Node\\Expr, PhpParser\\Node\\Expr\|null given#'
# false positive
- '#Comparison operation "<" between 0 and 2 is always true#'
2019-12-16 15:45:37 +01:00
2020-08-12 11:08:59 +02:00
- '#Method Rector\\Symfony\\Rector\\MethodCall\\AbstractToConstructorInjectionRector\:\:getServiceTypeFromMethodCallArgument\(\) should return PHPStan\\Type\\Type but returns PHPStan\\Type\\Type\|null#'
2019-12-24 11:45:52 +01:00
2019-12-30 20:10:43 +01:00
- '#Parameter \#1 \$expected of method PHPUnit\\Framework\\Assert\:\:assertInstanceOf\(\) expects class\-string<object\>, string given#'
- '#Unable to resolve the template type ExpectedType in call to method PHPUnit\\Framework\\Assert\:\:assertInstanceOf\(\)#'
2020-01-04 20:24:42 +01:00
2020-01-06 14:38:37 +01:00
# fix Symplify 7.2 later
- '#Method (.*?) returns bool type, so the name should start with is/has/was#'
2020-01-07 13:04:09 +01:00
2020-01-18 21:57:35 +01:00
- '#In method "Rector\\BetterPhpDocParser\\AnnotationReader\\NodeAnnotationReader\:\:createPropertyReflectionFromPropertyNode", caught "Throwable" must be rethrown\. Either catch a more specific exception or add a "throw" clause in the "catch" block to propagate the exception\. More info\: http\://bit\.ly/failloud#'
2020-01-21 14:32:40 +01:00
# doc is not enough
- '#Result of \|\| is always true#'
2020-01-21 16:36:31 +01:00
# known value
2020-01-28 17:01:22 +01:00
- '#Parameter \#2 \$name of class PhpParser\\Node\\Expr\\MethodCall constructor expects PhpParser\\Node\\Expr\|PhpParser\\Node\\Identifier\|string, string\|null given#'
2020-01-29 14:36:09 +01:00
2020-02-02 19:15:36 +01:00
- '#Parameter \#1 \$eventListenerTag of method Rector\\SymfonyCodeQuality\\Rector\\Class_\\EventListenerToEventSubscriberRector\:\:createEventItem\(\) expects Rector\\Symfony\\ValueObject\\Tag\\EventListenerTag, Rector\\Symfony\\Contract\\Tag\\TagInterface given#'
2020-02-02 19:15:36 +01:00
- '#Method Rector\\BetterPhpDocParser\\PhpDocInfo\\PhpDocInfoFactory\:\:parseTokensToPhpDocNode\(\) should return Rector\\AttributeAwarePhpDoc\\Ast\\PhpDoc\\AttributeAwarePhpDocNode but returns PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocNode#'
- '#Property PhpParser\\Node\\Stmt\\Expression\:\:\$expr \(PhpParser\\Node\\Expr\) does not accept PhpParser\\Node\\Expr\|null#'
2020-02-04 16:14:40 +01:00
- '#Call to an undefined method PHPStan\\Type\\Type\:\:getClassName\(\)#'
2020-02-10 10:17:05 +01:00
- '#Parameter \#1 \$typeNode of method Rector\\StaticTypeMapper\\StaticTypeMapper\:\:mapPHPStanPhpDocTypeNodeToPHPStanType\(\) expects PHPStan\\PhpDocParser\\Ast\\Type\\TypeNode, PHPStan\\PhpDocParser\\Ast\\Node given#'
2020-02-06 22:48:18 +01:00
- '#Parameter \#1 \$sprintfFuncCall of method Rector\\Core\\PhpParser\\NodeTransformer\:\:transformSprintfToArray\(\) expects PhpParser\\Node\\Expr\\FuncCall, PhpParser\\Node given#'
- '#Parameter \#1 \$nodes of method Rector\\Core\\PhpParser\\Node\\BetterNodeFinder\:\:find\(\) expects array<PhpParser\\Node\>\|PhpParser\\Node, array<PhpParser\\Node\\Stmt\>\|null given#'
2020-02-09 10:32:51 +01:00
- '#Method Rector\\SOLID\\Reflection\\ParentConstantReflectionResolver\:\:(.*?)\(\) should return ReflectionClassConstant\|null but returns ReflectionClassConstant\|false#'
2020-08-18 17:57:30 +02:00
- '#Parameter \#1 \$firstStmt of method Rector\\Generic\\Rector\\ClassMethod\\NormalToFluentRector\:\:isBothMethodCallMatch\(\) expects PhpParser\\Node\\Stmt\\Expression, PhpParser\\Node\\Stmt given#'
2020-02-10 10:32:18 +01:00
- '#Method Rector\\Core\\Rector\\AbstractRector\:\:wrapToArg\(\) should return array<PhpParser\\Node\\Arg\> but returns array<PhpParser\\Node\\Arg\|PhpParser\\Node\\Expr\>#'
2020-02-11 14:11:47 +01:00
2020-02-11 14:50:24 +01:00
- '#Method Rector\\FileSystemRector\\Rector\\AbstractFileSystemRector\:\:wrapToArg\(\) should return array<PhpParser\\Node\\Arg\> but returns array<PhpParser\\Node\\Arg\|PhpParser\\Node\\Expr\>#'
2020-02-16 22:29:32 +01:00
- '#Cannot call method (.*?)\(\) on Rector\\BetterPhpDocParser\\PhpDocInfo\\PhpDocInfo\|null#'
2020-02-18 23:09:25 +01:00
- '#Parameter \#(.*?) (.*?) of class PhpParser\\Node\\Expr\\BinaryOp\\(.*?) constructor expects PhpParser\\Node\\Expr, PhpParser\\Node given#'
2020-02-23 18:20:00 +01:00
2020-02-29 17:18:20 +01:00
- '#Access to an undefined property PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagValueNode\:\:\$description#'
2020-03-26 23:22:29 +01:00
- '#Method Rector\\Php80\\Rector\\NotIdentical\\StrContainsRector\:\:matchNotIdenticalToFalse\(\) should return PhpParser\\Node\\Expr\\FuncCall\|null but returns PhpParser\\Node\\Expr#'
2020-03-29 03:35:25 +02:00
- '#Parameter \#2 \$name of method Rector\\Core\\Rector\\AbstractRector\:\:isVariableName\(\) expects string, string\|null given#'
2020-03-31 20:46:33 +02:00
2020-04-13 23:44:44 +02:00
# broken
- '#Cannot call method getParentNode\(\) on Rector\\DeadCode\\ValueObject\\VariableNodeUse\|null#'
- '#Parameter \#2 \$name of method Rector\\NodeNameResolver\\NodeNameResolver\:\:isName\(\) expects string, string\|null given#'
2020-04-19 19:56:05 +02:00
- '#Parameter \#1 \$keyName of method Rector\\AttributeAwarePhpDoc\\Ast\\Type\\AttributeAwareArrayShapeItemNode\:\:createKeyWithSpacePattern\(\) expects PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprIntegerNode\|PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode\|null, PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprIntegerNode\|PHPStan\\PhpDocParser\\Ast\\ConstExpr\\ConstExprStringNode\|PHPStan\\PhpDocParser\\Ast\\Type\\IdentifierTypeNode\|null given#'
2020-09-18 12:06:01 +02:00
- '#Method Rector\\Caching\\Detector\\ChangedFilesDetector\:\:hashFile\(\) should return string but returns string\|false#'
2020-04-01 03:55:44 +02:00
- '#If condition is always false#'
2020-04-23 23:49:56 +02:00
- '#Parameter \#1 \$funcCall of method Rector\\Php80\\MatchAndRefactor\\StrStartsWithMatchAndRefactor\\AbstractMatchAndRefactor\:\:createStrStartsWithValueObjectFromFuncCall\(\) expects PhpParser\\Node\\Expr\\FuncCall, PhpParser\\Node\\Expr given#'
2020-04-25 16:45:36 +02:00
# mostly strings in tests
- '#Class (.*?) should be written with \:\:class notation, string found#'
2020-05-02 23:25:24 +02:00
- '#Method Rector\\Naming\\Naming\\PropertyNaming\:\:resolveShortClassName\(\) should return string but returns string\|null#'
2020-05-03 16:07:56 +02:00
2020-07-27 08:56:25 +02:00
-
message : "#in iterable type Iterator#"
paths :
- *Test.php
- *TestCase.php
2020-05-03 16:16:10 +02:00
-
message : "#^Cognitive complexity for \"Rector\\\\BetterPhpDocParser\\\\Printer\\\\WhitespaceDetector\\:\\:detectOldWhitespaces\\(\\)\" is 18, keep it under 9$#"
count : 1
path : packages/better-php-doc-parser/src/Printer/WhitespaceDetector.php
-
message : "#^Parameter \\#1 \\$input of function array_splice expects array, array\\<PhpParser\\\\Node\\\\Stmt\\>\\|null given\\.$#"
count : 1
path : rules/coding-style/src/Rector/ClassMethod/NewlineBeforeNewAssignSetRector.php
-
message : "#^Cognitive complexity for \"Rector\\\\PhpSpecToPHPUnit\\\\Rector\\\\MethodCall\\\\PhpSpecPromisesToPHPUnitAssertRector\\:\\:refactor\\(\\)\" is 13, keep it under 9$#"
count : 1
path : rules/php-spec-to-phpunit/src/Rector/MethodCall/PhpSpecPromisesToPHPUnitAssertRector.php
2020-05-07 23:58:51 +02:00
-
message : "#Use explicit property fetch names over dynamic#"
path : packages/doctrine-annotation-generated/src/PhpDocNode/ConstantReferenceIdentifierRestorer.php
2020-05-07 01:22:02 +02:00
- "#^Cognitive complexity for \"Rector\\\\Php70\\\\EregToPcreTransformer\\:\\:(.*?)\" is (.*?), keep it under 9$#"
2020-05-03 16:16:10 +02:00
2020-05-07 01:22:02 +02:00
- '#In method "Rector\\Utils\\ProjectValidator\\Process\\ParallelTaskRunner\:\:(.*?)", caught "Throwable" must be rethrown\. Either catch a more specific exception or add a "throw" clause in the "catch" block to propagate the exception#'
2020-05-07 01:10:51 +02:00
# weird
2020-05-07 01:22:02 +02:00
2020-05-07 01:10:51 +02:00
- '#Method (.*?) specified in iterable type Symfony\\Component\\Process\\Process#'
2020-05-07 01:22:02 +02:00
- '#Cannot cast PhpParser\\Node\\Expr\\Error\|PhpParser\\Node\\Identifier to string#'
2020-05-07 01:51:06 +02:00
- '#Parameter \#1 \$node of method Rector\\PostRector\\Collector\\NodesToAddCollector\:\:wrapToExpression\(\) expects PhpParser\\Node\\Expr\|PhpParser\\Node\\Stmt, PhpParser\\Node given#'
- '#Access to an undefined property PhpParser\\Node\\Expr\:\:\$class#'
- '#Method Rector\\BetterPhpDocParser\\Tests\\PhpDocParser\\AbstractPhpDocInfoTest\:\:parseFileAndGetFirstNodeOfType\(\) should return PhpParser\\Node but returns PhpParser\\Node\|null#'
2020-05-14 01:34:05 +02:00
- '#Property PhpParser\\Node\\Stmt\\Namespace_\:\:\$stmts \(array<PhpParser\\Node\\Stmt\>\) does not accept array<PhpParser\\Node\>#'
2020-05-17 12:43:03 +02:00
- '#Cognitive complexity for "Rector\\TypeDeclaration\\PHPStan\\Type\\ObjectTypeSpecifier\:\:matchShortenedObjectType\(\)" is 10, keep it under 9#'
2020-05-28 15:40:19 +02:00
- '#Parameter \#1 \$type of method PhpParser\\Builder\\FunctionLike\:\:setReturnType\(\) expects PhpParser\\Node\\Name\|PhpParser\\Node\\NullableType\|string, PhpParser\\Node\\Identifier\|PhpParser\\Node\\Name\|PhpParser\\Node\\NullableType\|PhpParser\\Node\\UnionType given#'
2020-05-28 21:20:16 +02:00
- '#Cognitive complexity for "Rector\\Core\\PhpParser\\Node\\Value\\ValueResolver\:\:getValue\(\)" is \d+, keep it under 9#'
2020-05-30 00:44:36 +02:00
- '#Cognitive complexity for "Rector\\NetteKdyby\\ContributeEventClassResolver\:\:resolveGetterMethodByEventClassAndParam\(\)" is \d+, keep it under 9#'
2020-06-07 10:29:13 +02:00
- '#Parameter \#1 \$type of class PhpParser\\Node\\NullableType constructor expects PhpParser\\Node\\Identifier\|PhpParser\\Node\\Name\|string, PhpParser\\Node\\Identifier\|PhpParser\\Node\\Name\|PhpParser\\Node\\NullableType\|PhpParser\\Node\\UnionType given#'
2020-06-18 11:49:37 +02:00
- '#Parameter \#1 \$object of function get_class expects object, PhpParser\\Node\|null given#'
2020-06-19 16:05:13 +02:00
- '#Class "Rector\\FileSystemRector\\Rector\\Removing\\RemoveProjectFileRector" is missing @see annotation with test case class reference#'
2020-06-28 13:20:25 +02:00
- '#Parameter \#1 \$type of method PhpParser\\Builder\\Param\:\:setType\(\) expects PhpParser\\Node\\Name\|PhpParser\\Node\\NullableType\|PhpParser\\Node\\UnionType\|string, PhpParser\\Node\\Identifier\|PhpParser\\Node\\Name\|PhpParser\\Node\\NullableType\|PhpParser\\Node\\UnionType given#'
2020-06-29 13:44:59 +02:00
- '#Parameter \#1 \$node of method Rector\\Core\\PhpParser\\Node\\BetterNodeFinder\:\:findFirstAncestorInstanceOf\(\) expects PhpParser\\Node, PhpParser\\Node\\Expr\\Variable\|null given#'
2020-07-01 23:41:49 +02:00
- '#Parameter \#1 \$objectType of method Rector\\Naming\\Naming\\PropertyNaming\:\:fqnToVariableName\(\) expects PHPStan\\Type\\ObjectType\|string, PHPStan\\Type\\Type given#'
2020-07-07 21:19:54 +02:00
# known value
- '#Property PhpParser\\Node\\Stmt\\Foreach_\:\:\$valueVar \(PhpParser\\Node\\Expr\) does not accept PhpParser\\Node\\Expr\|null#'
2020-07-12 18:35:56 +02:00
- '#Access to an undefined property PHPStan\\PhpDocParser\\Ast\\PhpDoc\\PhpDocTagValueNode\:\:\$type#'
2020-07-13 11:46:55 +02:00
# local type
-
2020-07-13 14:56:43 +02:00
message : '#Method call "isObjectType\(\)" argument on position 1 cannot use "\:\:class" reference#'
2020-07-13 11:46:55 +02:00
path : 'packages/dynamic-type-analysis/src/Rector/StaticCall/RemoveArgumentTypeProbeRector.php'
2020-07-22 15:08:40 +02:00
# only local use
-
message : '#Class "Rector\\RectorGenerator\\Rector\\Closure\\AddNewServiceToSymfonyPhpConfigRector" is missing @see annotation with test case class reference#'
path : 'packages/rector-generator/src/Rector/Closure/AddNewServiceToSymfonyPhpConfigRector.php'
2020-07-14 00:22:31 +02:00
- '#Class Rector\\Renaming\\Tests\\Rector\\MethodCall\\RenameMethodRector\\Fixture\\SkipSelfMethodRename not found#'
2020-07-22 15:08:40 +02:00
# fixed in symplfiy dev
-
message : '#Separate function "Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ref\(\)" in method call to standalone row to improve readability#'
path : 'packages/rector-generator/config/config.php'
2020-07-25 00:45:24 +02:00
2020-07-26 18:34:32 +02:00
- '#Parameter \#1 \$shortControlString of method Rector\\NetteCodeQuality\\Rector\\Assign\\MakeGetComponentAssignAnnotatedRector\:\:resolveTypeFromShortControlNameAndVariable\(\) expects PhpParser\\Node\\Scalar\\String_, PhpParser\\Node\\Expr\|null given#'
2020-07-27 08:11:51 +02:00
- '#Parameter \#1 \$variable of class Rector\\Php70\\ValueObject\\VariableAssignPair constructor expects PhpParser\\Node\\Expr\\ArrayDimFetch\|PhpParser\\Node\\Expr\\PropertyFetch\|PhpParser\\Node\\Expr\\StaticPropertyFetch\|PhpParser\\Node\\Expr\\Variable, PhpParser\\Node\\Expr given#'
2020-07-27 08:56:25 +02:00
# is nested expr
- '#Access to an undefined property PhpParser\\Node\\Expr\:\:\$expr#'
- '#Cognitive complexity for "Rector\\DeadCode\\NodeManipulator\\LivingCodeManipulator\:\:keepLivingCodeFromExpr\(\)" is \d+, keep it under 9#'
2020-07-29 00:09:47 +02:00
- '#Parameter \#1 \$files of method Symplify\\SmartFileSystem\\Finder\\FinderSanitizer\:\:sanitize\(\) expects \(iterable<SplFileInfo\|string\>&Nette\\Utils\\Finder\)\|Symfony\\Component\\Finder\\Finder, array<string\> given#'
2020-07-30 01:39:41 +02:00
- '#Static property Rector\\Core\\Testing\\PHPUnit\\AbstractGenericRectorTestCase\:\:\$allRectorContainer \(Rector\\Naming\\Tests\\Rector\\Class_\\RenamePropertyToMatchTypeRector\\Source\\ContainerInterface\|Symfony\\Component\\DependencyInjection\\Container\|null\) does not accept Psr\\Container\\ContainerInterface#'
2020-08-03 10:51:44 +02:00
# stubs
2020-08-11 12:59:04 +02:00
- '#Static property Symplify\\PackageBuilder\\Tests\\AbstractKernelTestCase\:\:\$container \(Psr\\Container\\ContainerInterface\) does not accept Rector\\Naming\\Tests\\Rector\\Class_\\RenamePropertyToMatchTypeRector\\Source\\ContainerInterface\|Symfony\\Component\\DependencyInjection\\Container#'
# wtf
-
message : '#Else branch is unreachable because ternary operator condition is always true#'
path : 'rules/psr4/src/Composer/PSR4NamespaceMatcher.php'
# false positive
- '#Parameter \#1 \$arrayItem of method Rector\\NetteKdyby\\NodeResolver\\ListeningMethodsCollector\:\:resolveCustomClassMethodAndEventClass\(\) expects PhpParser\\Node\\Expr\\ArrayItem, PhpParser\\Node given#'
2020-08-12 12:03:15 +02:00
- '#Class with base "(.*?)" name is already used in "_HumbugBox(.*?)"#'
2020-08-18 17:57:30 +02:00
-
message : '#Class "Rector\\RectorGenerator\\ValueObject\\RectorRecipe" has invalid namespace category "ValueObject"\. Pick one of\: ""#'
path : packages/rector-generator/src/ValueObject/RectorRecipe.php
2020-08-23 11:39:09 +02:00
- '#Parameter \#2 \$currentNode of method Rector\\CodingStyle\\Rector\\Assign\\ManualJsonStringToJsonEncodeArrayRector\:\:matchNextExprAssignConcatToSameVariable\(\) expects PhpParser\\Node\\Expr\\Assign\|PhpParser\\Node\\Expr\\AssignOp\\Concat, PhpParser\\Node given#'
-
2020-08-27 12:19:22 +02:00
message : '#Array (with keys|destruct) is not allowed\. Use value object to pass data instead#'
2020-08-23 11:39:09 +02:00
paths :
# working with cvs file
# 3rd party package
- rules/php70/src/EregToPcreTransformer.php
2020-08-23 15:39:26 +02:00
# output format
- packages/changes-reporting/src/Output/JsonOutputFormatter.php
# template variables
- packages/rector-generator/src/TemplateVariablesFactory.php
# output format to json
- rules/doctrine/src/Collector/UuidMigrationDataCollector.php
# should be replaced by symplify/composer-json-manipulator in the future
- compiler/src/Composer/ComposerJsonManipulator.php
# not sure how to improve
- rules/symfony/src/ValueObject/Tag/EventListenerTag.php
2020-08-25 00:26:14 +02:00
2020-08-27 12:19:22 +02:00
-
message : '#Use explicit return value over magic &reference#'
paths :
# 3rd party code
- rules/php70/src/EregToPcreTransformer.php
2020-08-25 00:26:14 +02:00
- '#Cannot access property \$key on PhpParser\\Node\\Expr\\ArrayItem\|null#'
- '#Class Nette\\DI\\CompilerExtension not found#'
- '#Class Latte\\Macros\\MacroSet not found#'
2020-08-27 12:19:22 +02:00
# symfony/console
-
message : '#Cannot cast array<string\>\|string\|true to string#'
path : 'src/Configuration/Configuration.php'
-
message : '#Use explicit return value over magic &reference#'
path : 'rules/dead-code/src/Rector/BinaryOp/RemoveDuplicatedInstanceOfRector.php'
-
message : '#Class with base "NodeNameResolver" name is already used in "Symplify\\CodingStandard\\PhpParser\\NodeNameResolver", "Rector\\NodeNameResolver\\NodeNameResolver"\. Use unique name to make classes easy to recognize#'
path : 'packages/node-name-resolver/src/NodeNameResolver.php'
2020-08-28 23:10:00 +02:00
-
message : '#Use value object over return of values#'
path : 'rules/phpunit/src/Composer/ComposerAutoloadedDirectoryProvider.php'
2020-08-27 12:19:22 +02:00
-
2020-08-28 23:10:00 +02:00
message : '#Use value object over return of values#'
path : 'rules/php70/src/EregToPcreTransformer.php'
2020-08-31 22:32:33 +02:00
2020-09-07 17:40:46 +02:00
# new symplify rules
- '#Do not use static calls#'
- '#Too many public elements on class \- \d+\. Try narrow it down under 10#'
- '#Class has too many properties \d+\. Try narrowing it down under 10#'
- '#Variable "\$attributeAwareFullyQualifiedIdentifierTypeNode" is too long with 46 chars\. Narrow it under 40 chars#'
# 3rd party
- '#Class cognitive complexity for "(NodeTypeResolver|EregToPcreTransformer|DumpNodesCommand)" is \d+, keep it under 50#'
-
message : '#Method "__construct\(\)" is using too many parameters \- \d+\. Make it under 10#'
paths :
- packages/node-type-resolver/src/NodeScopeAndMetadataDecorator.php
# the smallest descriptive method
- '#Variable "\$inverseJoinColumnsOpeningAndClosingSpace" is too long with \d+ chars\. Narrow it under 40 chars#'
2020-09-10 14:56:54 +02:00
# complex - single repository for all nodes
- '#Class cognitive complexity for "NodeRepository" is \d+, keep it under 50#'
2020-09-12 16:52:08 +07:00
- '#Method "autowireAbstractRectorDependencies\(\)" is using too many parameters \- 11\. Make it under 10#'
2020-09-15 11:16:43 +02:00
# symplify rules fix later
- '#Use another value object over string with value object arrays#'
- '#Use decouled factory service to create "(.*?)" object#'
- '#Add regex101\.org link to that shows the regex in practise, so it will be easier to maintain in case of bug/extension in the future#'
# hotskips, fix sooner
- '#Post operation are forbidden, as they make 2 values at the same line\. Use pre instead#'
- '#Use value object over multi array assign#'
2020-09-17 21:42:45 +02:00
-
message : '#Do not use static property#'
paths :
# cannot be handled any other way
- packages/doctrine-annotation-generated/src/DataCollector/ResolvedConstantStaticCollector.php # 12
- packages/dynamic-type-analysis/src/Probe/TypeStaticProbe.php # 19
- packages/dynamic-type-analysis/src/Probe/TypeStaticProbe.php # 24
- packages/dynamic-type-analysis/tests/ProbeStorage/StaticInMemoryProbeStorage.php # 14
- src/Testing/PHPUnit/AbstractGenericRectorTestCase.php # 68
2020-09-18 11:50:55 +02:00
- '#(.*?) expects class\-string, string given#'
2020-09-21 22:45:43 +02:00
# Temprory ignored
- '#Do not use scalar or array as constructor parameter\. Use ParameterProvider service instead#'
2020-09-22 11:27:44 +02:00
2020-09-23 11:16:40 +02:00
-
message : '#Use local named constant instead of inline string for regex to explain meaning by constant name#'
paths :
- packages/better-php-doc-parser/src/PartPhpDocTagPrinter/Behavior/ArrayPartPhpDocTagPrinterTrait.php # 27
- '#Do not use trait#'
- '#Method "(.*?)" is using too many parameters \- \d+\. Make it under 8#'
-
message : '#Use local named constant instead of inline string for regex to explain meaning by constant name#'
paths :
# trait cannot extract constant, decouple this
- packages/better-php-doc-parser/src/PhpDocNode/PrintTagValueNodeTrait.php # 52
-
message : '#Instead of "Symfony\\Component\\Finder\\SplFileInfo" class/interface use "Symplify\\SmartFileSystem\\SmartFileInfo"#'
paths :
- src/FileSystem/FilesFinder.php
2020-09-24 20:54:39 +02:00
# @todo fix in symplify
2020-10-01 23:55:10 +07:00
#-
# message: '#Method call argument on position 0 must use constant over value#'
# path: 'src/Rector/AbstractRector.php'
2020-09-24 20:54:39 +02:00
- '#Method Rector\\DocumentationGenerator\\Tests\\Printer\\RectorsDocumentationPrinter\\RectorsDocumentationPrinterTest\:\:createRectorsFromRectorClasses\(\) should return array<Rector\\Core\\Contract\\Rector\\RectorInterface\> but returns array<int, object\>#'
- '#Parameter \#1 \$rectors of method Rector\\DocumentationGenerator\\Printer\\RectorsDocumentationPrinter\:\:print\(\) expects array<Rector\\Core\\Contract\\Rector\\RectorInterface\>, array<object\> given#'
2020-10-01 23:55:10 +07:00
2020-10-01 21:45:29 +02:00
-
message : '#Use "Nette\\Utils\\Strings\:\:contains\(\)" static call over "strstr\(\)" func call#'
paths :
- utils/phpstan-extensions/src/Rule/CheckNotTestsNamespaceOutsideTestsDirectoryRule.php # 76
- utils/phpstan-extensions/src/Rule/CheckNotTestsNamespaceOutsideTestsDirectoryRule.php # 81
2020-10-01 23:55:10 +07:00
-
message : '#Do not call parent method if no override process#'
paths :
- rules/symfony/tests/Rector/MethodCall/StringFormTypeToClassRector/WithContainerTest.php # 30
- src/PhpParser/Builder/UseBuilder.php # 19
-
message : '#Use "Nette\\Utils\\Strings\:\:contains\(\)" static call over "strstr\(\)" func call#'
paths :
- utils/phpstan-extensions/src/Rule/CheckNotTestsNamespaceOutsideTestsDirectoryRule.php # 76
- utils/phpstan-extensions/src/Rule/CheckNotTestsNamespaceOutsideTestsDirectoryRule.php # 81
-
message : '#Do not call parent method if parent method is empty#'
paths :
- rules/type-declaration/src/Exception/ConflictingPriorityException.php # 26
- src/Exception/Application/FileProcessingException.php # 22
- src/Exception/Rector/RectorNotFoundOrNotValidRectorClassException.php # 15
- src/Exception/ShouldNotHappenException.php # 18
- src/Testing/PHPUnit/AbstractGenericRectorTestCase.php # 77
-
message : '#Do not use factory in constructor#'
paths :
- compiler/src/Console/Command/CompileCommand.php # 70
- packages/node-type-resolver/src/DependencyInjection/PHPStanServicesFactory.php # 38
- packages/node-type-resolver/src/PHPStan/Scope/NodeVisitor/RemoveDeepChainMethodCallNodeVisitor.php # 37
- packages/phpstan-static-type-mapper/src/PHPStanStaticTypeMapper.php # 37
- packages/post-rector/src/Rector/NameImportingPostRector.php # 39
- rules/nette-code-quality/src/NodeResolver/MethodNamesByInputNamesResolver.php # 21
- rules/nette-to-symfony/src/Rector/ClassMethod/RenameEventNamesInEventSubscriberRector.php # 37
- rules/type-declaration/src/Exception/ConflictingPriorityException.php # 12
- src/Application/ActiveRectorsProvider.php # 27
- src/Autoloading/AdditionalAutoloader.php # 39
- src/Configuration/Configuration.php # 104
- src/Console/Application.php # 39
- src/Console/Output/OutputFormatterCollector.php # 20
- src/Exception/Application/FileProcessingException.php # 13
- src/FileSystem/FilesFinder.php # 56
- src/Php/TypeAnalyzer.php # 47
- src/PhpParser/NodeTraverser/RectorNodeTraverser.php # 30
- src/Skip/Skipper.php # 30
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareMethodTagValueNodeFactory.php # 53
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareMethodTagValueParameterNodeFactory.php # 50
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareParamTagValueNodeFactory.php # 48
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwarePhpDocNodeFactory.php # 61
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwarePropertyTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareReturnTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareThrowsTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareVarTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareArrayShapeItemNodeFactory.php # 41
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareArrayShapeNodeFactory.php # 45
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareArrayTypeNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareCallableTypeNodeFactory.php # 48
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareGenericTypeNodeFactory.php # 47
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareIntersectionTypeNodeFactory.php # 44
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareNullableTypeNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareUnionTypeNodeFactory.php # 44
- packages/better-php-doc-parser/src/PhpDocNodeFactory/PHPUnitDataProviderDocNodeFactory.php # 52
- packages/better-php-doc-parser/src/PhpDocNodeFactory/ParamPhpDocNodeFactory.php # 81
- packages/dynamic-type-analysis/src/Probe/TypeStaticProbe.php # 82
- packages/node-type-resolver/src/FileSystem/CurrentFileInfoProvider.php # 22
- packages/node-type-resolver/src/FileSystem/CurrentFileInfoProvider.php # 35
- packages/phpstan-static-type-mapper/src/TypeMapper/ObjectTypeMapper.php # 123
- packages/phpstan-static-type-mapper/src/TypeMapper/ObjectWithoutClassTypeMapper.php # 72
- packages/rector-generator/src/Rector/Closure/AddNewServiceToSymfonyPhpConfigRector.php # 39
- rules/nette-code-quality/src/FormControlTypeResolver/AssignedVariablesMethodCallsFormTypeResolver.php # 50
- rules/nette-code-quality/src/FormControlTypeResolver/ClassMethodFormTypeResolver.php # 67
- rules/nette-code-quality/src/FormControlTypeResolver/ConstructorFormControlTypeResolver.php # 62
- rules/nette-code-quality/src/FormControlTypeResolver/GetComponentMethodCallFormControlTypeResolver.php # 110
- rules/nette-code-quality/src/FormControlTypeResolver/MagicNetteFactoryInterfaceFormControlTypeResolver.php # 95
- rules/nette-code-quality/src/FormControlTypeResolver/MethodCallFormControlTypeResolver.php # 59
- rules/nette-code-quality/src/FormControlTypeResolver/NewFormControlTypeResolver.php # 61
- rules/nette-code-quality/src/FormControlTypeResolver/ReturnFormControlTypeResolver.php # 54
- rules/nette-code-quality/src/FormControlTypeResolver/ThisVariableInAnotherMethodFormControlTypeResolver.php # 52
- rules/nette-code-quality/src/FormControlTypeResolver/VariableConstructorFormControlTypeResolver.php # 84
- src/Configuration/ChangeConfiguration.php # 17
- src/Configuration/Configuration.php # 149
- src/Configuration/Configuration.php # 172
- src/Configuration/Configuration.php # 204
- src/Configuration/Configuration.php # 227
- src/Configuration/CurrentNodeProvider.php # 16
- src/HttpKernel/RectorKernel.php # 70
- src/Rector/AbstractRector/CallableNodeTraverserTrait.php # 24
- src/Rector/AbstractRector/CallableNodeTraverserTrait.php # 24
- src/Rector/AbstractRector/ConstFetchAnalyzerTrait.php # 24
- src/Rector/AbstractRector/ConstFetchAnalyzerTrait.php # 24
- src/Testing/NodeVisitor/AttributeCollectingNodeVisitor.php # 24
-
message : '#Do not use factory in constructor#'
paths :
- src/Testing/PHPUnit/Runnable/ClassLikeNamesSuffixer.php # 27
- src/Testing/PHPUnit/Runnable/RunnableClassFinder.php # 29
- utils/node-documentation-generator/src/ValueObject/NodeInfo.php # 29
-
message : '#Method with @required need to be named autowire\+class name#'
paths :
- packages/node-collector/src/NodeCollector/NodeRepository.php # 126
- packages/node-collector/src/NodeCollector/ParsedClassConstFetchNodeCollector.php # 44
- packages/node-collector/src/NodeCollector/ParsedPropertyFetchNodeCollector.php # 46
- packages/node-name-resolver/src/NodeNameResolver/ClassConstFetchNameResolver.php # 22
- packages/node-name-resolver/src/NodeNameResolver/ClassConstNameResolver.php # 22
- packages/node-name-resolver/src/NodeNameResolver/ParamNameResolver.php # 22
- packages/node-name-resolver/src/NodeNameResolver/PropertyNameResolver.php # 22
- packages/node-name-resolver/src/NodeNameResolver/UseNameResolver.php # 22
- packages/node-type-resolver/src/NodeTypeResolver/ArrayDimFetchTypeResolver.php # 24
- packages/node-type-resolver/src/NodeTypeResolver/CastTypeResolver.php # 23
- packages/node-type-resolver/src/NodeTypeResolver/ClassConstFetchTypeResolver.php # 23
- packages/node-type-resolver/src/NodeTypeResolver/ClassMethodOrClassConstTypeResolver.php # 27
- packages/node-type-resolver/src/NodeTypeResolver/ParamTypeResolver.php # 58
- packages/node-type-resolver/src/NodeTypeResolver/PropertyFetchTypeResolver.php # 79
- packages/node-type-resolver/src/NodeTypeResolver/StaticCallTypeResolver.php # 37
- packages/node-type-resolver/src/NodeTypeResolver/VariableTypeResolver.php # 92
- packages/phpstan-static-type-mapper/src/TypeMapper/CallableTypeMapper.php # 28
- packages/static-type-mapper/src/PhpDocParser/ArrayTypeMapper.php # 35
- packages/static-type-mapper/src/PhpDocParser/NullableTypeMapper.php # 32
- rules/naming/src/Guard/PropertyConflictingNameGuard/MatchPropertyTypeConflictingNameGuard.php # 14
- rules/naming/src/Guard/PropertyConflictingNameGuard/UnderscoreCamelCaseConflictingNameGuard.php # 14
- rules/symfony/src/Rector/MethodCall/AbstractToConstructorInjectionRector.php # 37
- rules/type-declaration/src/TypeInferer/ParamTypeInferer/PHPUnitDataProviderParamTypeInferer.php # 51
- src/Console/Command/AbstractCommand.php # 26
- src/Rector/AbstractRector.php # 125
- src/Rector/AbstractRector/BetterStandardPrinterTrait.php # 37
- src/Rector/AbstractRector/BetterStandardPrinterTrait.php # 37
- src/Rector/AbstractRector/CallableNodeTraverserTrait.php # 24
- src/Rector/AbstractRector/CallableNodeTraverserTrait.php # 24
- src/Rector/AbstractRector/ComplexRemovalTrait.php # 59
- src/Rector/AbstractRector/ComplexRemovalTrait.php # 59
- src/Rector/AbstractRector/ConstFetchAnalyzerTrait.php # 24
- src/Rector/AbstractRector/ConstFetchAnalyzerTrait.php # 24
- src/Rector/AbstractRector/NodeTypeResolverTrait.php # 59
- src/Rector/AbstractRector/NodeTypeResolverTrait.php # 59
- src/Rector/AbstractRector/VisibilityTrait.php # 29
- src/Rector/AbstractRector/VisibilityTrait.php # 29
-
message : '#Do not use setter on a service#'
paths :
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareExtendsTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareImplementsTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareMethodTagValueNodeFactory.php # 53
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareMethodTagValueParameterNodeFactory.php # 50
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareParamTagValueNodeFactory.php # 48
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwarePhpDocNodeFactory.php # 61
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwarePropertyTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareReturnTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareThrowsTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/PhpDoc/AttributeAwareVarTagValueNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareArrayShapeItemNodeFactory.php # 41
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareArrayShapeNodeFactory.php # 45
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareArrayTypeNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareCallableTypeNodeFactory.php # 48
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareGenericTypeNodeFactory.php # 47
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareIntersectionTypeNodeFactory.php # 44
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareNullableTypeNodeFactory.php # 42
- packages/attribute-aware-php-doc/src/AttributeAwareNodeFactory/Type/AttributeAwareUnionTypeNodeFactory.php # 44
- packages/better-php-doc-parser/src/PhpDocNodeFactory/PHPUnitDataProviderDocNodeFactory.php # 52
- packages/better-php-doc-parser/src/PhpDocNodeFactory/ParamPhpDocNodeFactory.php # 81
- packages/dynamic-type-analysis/src/Probe/TypeStaticProbe.php # 82
- packages/node-type-resolver/src/FileSystem/CurrentFileInfoProvider.php # 22
- packages/node-type-resolver/src/FileSystem/CurrentFileInfoProvider.php # 35
- packages/phpstan-static-type-mapper/src/TypeMapper/ObjectTypeMapper.php # 123
- packages/phpstan-static-type-mapper/src/TypeMapper/ObjectWithoutClassTypeMapper.php # 72
- packages/rector-generator/src/Rector/Closure/AddNewServiceToSymfonyPhpConfigRector.php # 39
- rules/nette-code-quality/src/FormControlTypeResolver/AssignedVariablesMethodCallsFormTypeResolver.php # 50
- rules/nette-code-quality/src/FormControlTypeResolver/ClassMethodFormTypeResolver.php # 67
- rules/nette-code-quality/src/FormControlTypeResolver/ConstructorFormControlTypeResolver.php # 62
- rules/nette-code-quality/src/FormControlTypeResolver/GetComponentMethodCallFormControlTypeResolver.php # 110
- rules/nette-code-quality/src/FormControlTypeResolver/MagicNetteFactoryInterfaceFormControlTypeResolver.php # 95
- rules/nette-code-quality/src/FormControlTypeResolver/MethodCallFormControlTypeResolver.php # 59
- rules/nette-code-quality/src/FormControlTypeResolver/NewFormControlTypeResolver.php # 61
- rules/nette-code-quality/src/FormControlTypeResolver/ReturnFormControlTypeResolver.php # 54
- rules/nette-code-quality/src/FormControlTypeResolver/ThisVariableInAnotherMethodFormControlTypeResolver.php # 52
- rules/nette-code-quality/src/FormControlTypeResolver/VariableConstructorFormControlTypeResolver.php # 84
- src/Configuration/ChangeConfiguration.php # 17
- src/Configuration/Configuration.php # 149
- src/Configuration/Configuration.php # 172
- src/Configuration/Configuration.php # 204
- src/Configuration/Configuration.php # 227
- src/Configuration/CurrentNodeProvider.php # 16
- src/Rector/AbstractRector/CallableNodeTraverserTrait.php # 24
- src/Rector/AbstractRector/CallableNodeTraverserTrait.php # 24
- src/Rector/AbstractRector/ConstFetchAnalyzerTrait.php # 24
- src/Rector/AbstractRector/ConstFetchAnalyzerTrait.php # 24
2020-10-01 21:45:29 +02:00
- src/Testing/NodeVisitor/AttributeCollectingNodeVisitor.php # 24
- src/Testing/NodeVisitor/AttributeCollectingNodeVisitor.php # 24
- '#Use "Symplify\\SmartFileSystem\\SmartFileSystem\:\:dumpFile\(\)" static call over "file_put_contents\(\)" func call#'
- '#Class name start with Abstract must have abstract keyword#'
- '#Parameter \#1 \$name of method Rector\\Restoration\\Rector\\Use_\\RestoreFullyQualifiedNameRector\:\:resolveFullyQualifiedName\(\) expects PhpParser\\Node\\Name, PhpParser\\Node\\Identifier\|PhpParser\\Node\\Name given#'
- '#Class with base "CheckNotTestsNamespaceOutsideTestsDirectoryRule" name is already used in "Rector\\PHPStanExtensions\\Rule\\CheckNotTestsNamespaceOutsideTestsDirectoryRule", "Symplify\\CodingStandard\\Rules\\CheckNotTestsNamespaceOutsideTestsDirectoryRule"\. Use unique name to make classes easy to recognize#'
-
message : '#Do not use setter on a service#'
paths :
- src/HttpKernel/RectorKernel.php
# buggy, is fixed on symplify dev-master
-
message : '#Method call argument on position 0 must use constant over value#'
paths :
- src/Rector/AbstractRector.php # 419
- src/Rector/AbstractRector.php # 419