File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 31
31
"phpunit/phpunit" : " ^9.5" ,
32
32
"symfony/framework-bundle" : " ^4.4 | ^5.0" ,
33
33
"symfony/yaml" : " ^5.2" ,
34
- "phpstan/phpstan" : " ^0.12.78" ,
35
- "phpstan/phpstan-phpunit" : " ^0.12.17" ,
36
- "phpstan/extension-installer" : " ^1.1" ,
37
- "phpstan/phpstan-symfony" : " ^0.12.20" ,
38
34
"ext-json" : " *" ,
39
35
"friendsofphp/php-cs-fixer" : " ^3.35" ,
40
- "doctrine/annotations" : " ^2.0"
36
+ "doctrine/annotations" : " ^2.0" ,
37
+ "phpstan/phpstan" : " ^1.10" ,
38
+ "phpstan/phpstan-phpunit" : " ^1.3" ,
39
+ "phpstan/extension-installer" : " ^1.3" ,
40
+ "phpstan/phpstan-symfony" : " ^1.3"
41
41
},
42
42
"autoload" : {
43
43
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
parameters :
2
2
level : 8
3
3
checkMissingIterableValueType : false
4
+ treatPhpDocTypesAsCertain : false
Original file line number Diff line number Diff line change @@ -640,7 +640,6 @@ public function setParameters($parameters): self
640
640
if (! $ this ->immutableParameters ->isEmpty ()) {
641
641
throw new CannotOverrideParametersException ();
642
642
}
643
- // @phpstan-ignore-next-line
644
643
$ this ->qb ->setParameters ($ parameters );
645
644
646
645
return $ this ;
@@ -654,7 +653,6 @@ public function setImmutableParameters($parameters): self
654
653
if (! $ this ->immutableParameters ->isEmpty ()) {
655
654
throw new CannotOverrideParametersException ();
656
655
}
657
- // @phpstan-ignore-next-line
658
656
$ this ->qb ->setParameters ($ parameters );
659
657
foreach ($ this ->qb ->getParameters ()->getValues () as $ param ) {
660
658
$ this ->immutableParameters ->add ($ param );
You can’t perform that action at this time.
0 commit comments