File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -273,10 +273,10 @@ protected function renderRules(OutputFormat $outputFormat)
273273 $ nextLevelFormat = $ outputFormat ->nextLevel ();
274274 foreach ($ this ->rules as $ rules ) {
275275 foreach ($ rules as $ rule ) {
276- $ sRendered = $ nextLevelFormat ->safely (static function () use ($ rule , $ nextLevelFormat ): string {
276+ $ renderedRule = $ nextLevelFormat ->safely (static function () use ($ rule , $ nextLevelFormat ): string {
277277 return $ rule ->render ($ nextLevelFormat );
278278 });
279- if ($ sRendered === null ) {
279+ if ($ renderedRule === null ) {
280280 continue ;
281281 }
282282 if ($ isFirst ) {
@@ -285,7 +285,7 @@ protected function renderRules(OutputFormat $outputFormat)
285285 } else {
286286 $ result .= $ nextLevelFormat ->spaceBetweenRules ();
287287 }
288- $ result .= $ sRendered ;
288+ $ result .= $ renderedRule ;
289289 }
290290 }
291291
You can’t perform that action at this time.
0 commit comments