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 39215f0 commit 206f2c7Copy full SHA for 206f2c7
1 file changed
TokenParser/CacheTokenParser.php
@@ -30,7 +30,7 @@ public function parse(Token $token): Node
30
$tags = null;
31
while ($stream->test(Token::NAME_TYPE)) {
32
$k = $stream->getCurrent()->getValue();
33
- if (!in_array($k, ['ttl', 'tags'])) {
+ if (!\in_array($k, ['ttl', 'tags'])) {
34
throw new SyntaxError(\sprintf('Unknown "%s" configuration.', $k), $stream->getCurrent()->getLine(), $stream->getSourceContext());
35
}
36
0 commit comments