We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10afe84 commit e5793dfCopy full SHA for e5793df
conf/config.neon
@@ -561,6 +561,8 @@ services:
561
562
-
563
class: PHPStan\PhpDocParser\Parser\TypeParser
564
+ arguments:
565
+ quoteAwareConstExprString: %featureToggles.unescapeStrings%
566
567
568
class: PHPStan\PhpDocParser\Parser\ConstExprParser
src/PhpDoc/ConstExprParserFactory.php
@@ -13,7 +13,7 @@ public function __construct(private bool $unescapeStrings)
13
14
public function create(): ConstExprParser
15
{
16
- return new ConstExprParser($this->unescapeStrings);
+ return new ConstExprParser($this->unescapeStrings, $this->unescapeStrings);
17
}
18
19
0 commit comments