We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
->getConstantArrays()
current implementations only checks dynamic parameter $logger->info('foo', ['key' => 'bar']);. Rules should be checked with phpdoc parameter, method scope array variable( $context = ['key' => 'bar']; $logger->info('foo', $context); )
$logger->info('foo', ['key' => 'bar']);
$context = ['key' => 'bar']; $logger->info('foo', $context);
The text was updated successfully, but these errors were encountered:
ContextKeyRule - Handle context array by constant-array struggle-for-…
2525a31
…php#57
PlaceholderCorrespondToKeysRule - Handle context array by constant-ar…
569a077
…ray struggle-for-php#57
Merge pull request #62 from sasezaki/context-constant-arrays
7f1e03e
Handle context array by constant-array #57
sasezaki
Successfully merging a pull request may close this issue.
ContextRequireExceptionKeyRulecurrent implementations only checks dynamic parameter
$logger->info('foo', ['key' => 'bar']);
.Rules should be checked with phpdoc parameter, method scope array variable(
$context = ['key' => 'bar']; $logger->info('foo', $context);
)The text was updated successfully, but these errors were encountered: