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