@@ -71,24 +71,24 @@ public function getAllRuleSets(): array
71
71
* @param CSSList|RuleSet|string $element
72
72
* the `CSSList` or `RuleSet` to start the search from (defaults to the whole document).
73
73
* If a string is given, it is used as rule name filter.
74
- * @param bool $bSearchInFunctionArguments whether to also return Value objects used as Function arguments.
74
+ * @param bool $searchInFunctionArguments whether to also return Value objects used as Function arguments.
75
75
*
76
76
* @return array<int, Value>
77
77
*
78
78
* @see RuleSet->getRules()
79
79
*/
80
- public function getAllValues ($ element = null , $ bSearchInFunctionArguments = false ): array
80
+ public function getAllValues ($ element = null , $ searchInFunctionArguments = false ): array
81
81
{
82
- $ sSearchString = null ;
82
+ $ searchString = null ;
83
83
if ($ element === null ) {
84
84
$ element = $ this ;
85
85
} elseif (\is_string ($ element )) {
86
- $ sSearchString = $ element ;
86
+ $ searchString = $ element ;
87
87
$ element = $ this ;
88
88
}
89
89
/** @var array<int, Value> $result */
90
90
$ result = [];
91
- $ this ->allValues ($ element , $ result , $ sSearchString , $ bSearchInFunctionArguments );
91
+ $ this ->allValues ($ element , $ result , $ searchString , $ searchInFunctionArguments );
92
92
return $ result ;
93
93
}
94
94
@@ -98,18 +98,18 @@ public function getAllValues($element = null, $bSearchInFunctionArguments = fals
98
98
* Note that this does not yield the full `DeclarationBlock` that the selector belongs to
99
99
* (and, currently, there is no way to get to that).
100
100
*
101
- * @param string|null $sSpecificitySearch
101
+ * @param string|null $specificitySearch
102
102
* An optional filter by specificity.
103
103
* May contain a comparison operator and a number or just a number (defaults to "==").
104
104
*
105
105
* @return array<int, Selector>
106
106
* @example `getSelectorsBySpecificity('>= 100')`
107
107
*/
108
- public function getSelectorsBySpecificity ($ sSpecificitySearch = null ): array
108
+ public function getSelectorsBySpecificity ($ specificitySearch = null ): array
109
109
{
110
110
/** @var array<int, Selector> $result */
111
111
$ result = [];
112
- $ this ->allSelectors ($ result , $ sSpecificitySearch );
112
+ $ this ->allSelectors ($ result , $ specificitySearch );
113
113
return $ result ;
114
114
}
115
115
0 commit comments