File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -429,18 +429,18 @@ public function getContents(): array
429429 }
430430
431431 /**
432- * @param list<Selector> $lhs
433- * @param list<Selector> $rhs
432+ * @param list<Selector> $selectors1
433+ * @param list<Selector> $selectors2
434434 */
435- private static function selectorsMatch (array $ lhs , array $ rhs ): bool
435+ private static function selectorsMatch (array $ selectors1 , array $ selectors2 ): bool
436436 {
437- $ lhsStrings = self ::getSelectorStrings ($ lhs );
438- $ rhsStrings = self ::getSelectorStrings ($ rhs );
437+ $ selectorStrings1 = self ::getSelectorStrings ($ selectors1 );
438+ $ selectorStrings2 = self ::getSelectorStrings ($ selectors2 );
439439
440- \sort ($ lhsStrings );
441- \sort ($ rhsStrings );
440+ \sort ($ selectorStrings1 );
441+ \sort ($ selectorStrings2 );
442442
443- return $ lhsStrings === $ rhsStrings ;
443+ return $ selectorStrings1 === $ selectorStrings2 ;
444444 }
445445
446446 /**
You can’t perform that action at this time.
0 commit comments