File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ public function __toString(): string
269
269
protected function renderRules (OutputFormat $ outputFormat )
270
270
{
271
271
$ result = '' ;
272
- $ bIsFirst = true ;
272
+ $ isFirst = true ;
273
273
$ oNextLevel = $ outputFormat ->nextLevel ();
274
274
foreach ($ this ->aRules as $ aRules ) {
275
275
foreach ($ aRules as $ rule ) {
@@ -279,8 +279,8 @@ protected function renderRules(OutputFormat $outputFormat)
279
279
if ($ sRendered === null ) {
280
280
continue ;
281
281
}
282
- if ($ bIsFirst ) {
283
- $ bIsFirst = false ;
282
+ if ($ isFirst ) {
283
+ $ isFirst = false ;
284
284
$ result .= $ oNextLevel ->spaceBeforeRules ();
285
285
} else {
286
286
$ result .= $ oNextLevel ->spaceBetweenRules ();
@@ -289,7 +289,7 @@ protected function renderRules(OutputFormat $outputFormat)
289
289
}
290
290
}
291
291
292
- if (!$ bIsFirst ) {
292
+ if (!$ isFirst ) {
293
293
// Had some output
294
294
$ result .= $ outputFormat ->spaceAfterRules ();
295
295
}
You can’t perform that action at this time.
0 commit comments