We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c4d36 commit 4f94ccdCopy full SHA for 4f94ccd
src/Type/Symfony/Config/ValueObject/ParentObjectType.php
@@ -4,6 +4,7 @@
4
5
use PHPStan\Type\ObjectType;
6
use PHPStan\Type\Type;
7
+use PHPStan\Type\VerbosityLevel;
8
9
class ParentObjectType extends ObjectType
10
{
@@ -23,4 +24,9 @@ public function getParent(): Type
23
24
return $this->parent;
25
}
26
27
+ protected function describeAdditionalCacheKey(): string
28
+ {
29
+ return $this->parent->describe(VerbosityLevel::cache());
30
+ }
31
+
32
src/Type/Symfony/Config/ValueObject/TreeBuilderType.php
@@ -22,4 +22,9 @@ public function getRootNodeClassName(): string
22
return $this->rootNodeClassName;
+ return $this->getRootNodeClassName();
0 commit comments