@@ -46,7 +46,7 @@ This package provides the following rules.
4646
4747| :pushpin : _ error identifier_ |
4848| --- |
49- | sfp-psr-log .placeholderCharactersInvalidChar |
49+ | sfpPsrLog .placeholderCharactersInvalidChar |
5050
5151* reports when placeholder in ` $message ` characters are ** not** , ` A-Z ` , ` a-z ` , ` 0-9 ` , underscore ` _ ` , and period ` . `
5252
@@ -57,7 +57,7 @@ $logger->info('message are {foo-hyphen}');
5757
5858| :pushpin : _ error identifier_ |
5959| --- |
60- | sfp-psr-log .placeholderCharactersDoubleBraces |
60+ | sfpPsrLog .placeholderCharactersDoubleBraces |
6161
6262* reports when double braces pair ` {{ ` ` }} ` are used.
6363
@@ -72,7 +72,7 @@ $logger->info('message are {{foo}}');
7272
7373| :pushpin : _ error identifier_ |
7474| --- |
75- | sfp-psr-log .placeholderCorrespondToKeysMissedContext |
75+ | sfpPsrLog .placeholderCorrespondToKeysMissedContext |
7676
7777* reports when placeholder exists in message, but ` $context ` parameter is missed.
7878
@@ -83,7 +83,7 @@ $logger->info('message has {nonContext} .');
8383
8484| :pushpin : _ error identifier_ |
8585| --- |
86- | sfp-psr-log .placeholderCorrespondToKeysMissedKey |
86+ | sfpPsrLog .placeholderCorrespondToKeysMissedKey |
8787
8888* reports when placeholder exists in message, but key in ` $context ` does not exist against them.
8989
@@ -99,7 +99,7 @@ $logger->info('user {user_id} gets an error {error} .', ['user_id' => $user_id])
9999
100100| :pushpin : _ error identifier_ |
101101| --- |
102- | sfp-psr-log .contextKeyNonEmptyString |
102+ | sfpPsrLog .contextKeyNonEmptyString |
103103
104104* reports when context key is not ** non-empty-string** .
105105
@@ -110,7 +110,7 @@ $logger->info('user {user_id} gets an error {error} .', ['user_id' => $user_id])
110110
111111| :pushpin : _ error identifier_ |
112112| --- |
113- | sfp-psr-log .contextKeyOriginalPattern |
113+ | sfpPsrLog .contextKeyOriginalPattern |
114114
115115* reports when context key is not matched you defined pattern.
116116 * if ` contextKeyOriginalPattern ` parameter is not set, this check would be ignored.
@@ -132,7 +132,7 @@ parameters:
132132
133133| :pushpin : _ error identifier_ |
134134| --- |
135- | sfp-psr-log .contextRequireExceptionKey |
135+ | sfpPsrLog .contextRequireExceptionKey |
136136
137137* It forces ` exception ` key into context parameter when current scope has ` \Throwable ` object.
138138
@@ -194,7 +194,7 @@ parameters:
194194
195195| :pushpin : _ error identifier_ |
196196| --- |
197- | sfp-psr-log .messageNotStaticString |
197+ | sfpPsrLog .messageNotStaticString |
198198
199199* reports when $message is not static string value.
200200
0 commit comments