@@ -79,7 +79,7 @@ final class OD_URL_Metric_Group_Collection implements Countable, IteratorAggrega
79
79
* get_groups_by_lcp_element?: array<string, OD_URL_Metric_Group[]>,
80
80
* get_common_lcp_element?: OD_Element|null,
81
81
* get_all_element_max_intersection_ratios?: array<string, float>,
82
- * get_all_elements ?: array<string, non-empty-array<int, OD_Element>>,
82
+ * get_xpath_elements_map ?: array<string, non-empty-array<int, OD_Element>>,
83
83
* }
84
84
*/
85
85
private $ result_cache = array ();
@@ -419,7 +419,7 @@ public function get_common_lcp_element(): ?OD_Element {
419
419
*
420
420
* @return array<string, non-empty-array<int, OD_Element>> Keys are XPaths and values are the element instances.
421
421
*/
422
- public function get_all_elements (): array {
422
+ public function get_xpath_elements_map (): array {
423
423
if ( array_key_exists ( __FUNCTION__ , $ this ->result_cache ) ) {
424
424
return $ this ->result_cache [ __FUNCTION__ ];
425
425
}
@@ -454,7 +454,7 @@ public function get_all_element_max_intersection_ratios(): array {
454
454
455
455
$ result = ( function () {
456
456
$ elements_max_intersection_ratios = array ();
457
- foreach ( $ this ->get_all_elements () as $ xpath => $ elements ) {
457
+ foreach ( $ this ->get_xpath_elements_map () as $ xpath => $ elements ) {
458
458
$ element_intersection_ratios = array ();
459
459
foreach ( $ elements as $ element ) {
460
460
$ element_intersection_ratios [] = $ element ->get_intersection_ratio ();
0 commit comments