Skip to content

Commit 98d3fd8

Browse files
committed
Rename get_all_elements to get_xpath_elements_map
1 parent 7cfdcac commit 98d3fd8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

plugins/embed-optimizer/class-embed-optimizer-tag-visitor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ private function reduce_layout_shifts( OD_Tag_Visitor_Context $context ): void {
216216
*/
217217
$minimums = array();
218218

219-
$elements = $context->url_metric_group_collection->get_all_elements()[ $embed_wrapper_xpath ] ?? array();
219+
$elements = $context->url_metric_group_collection->get_xpath_elements_map()[ $embed_wrapper_xpath ] ?? array();
220220
foreach ( $elements as $element ) {
221221
/**
222222
* Resized bounding client rect.

plugins/optimization-detective/class-od-url-metric-group-collection.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ final class OD_URL_Metric_Group_Collection implements Countable, IteratorAggrega
7979
* get_groups_by_lcp_element?: array<string, OD_URL_Metric_Group[]>,
8080
* get_common_lcp_element?: OD_Element|null,
8181
* 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>>,
8383
* }
8484
*/
8585
private $result_cache = array();
@@ -419,7 +419,7 @@ public function get_common_lcp_element(): ?OD_Element {
419419
*
420420
* @return array<string, non-empty-array<int, OD_Element>> Keys are XPaths and values are the element instances.
421421
*/
422-
public function get_all_elements(): array {
422+
public function get_xpath_elements_map(): array {
423423
if ( array_key_exists( __FUNCTION__, $this->result_cache ) ) {
424424
return $this->result_cache[ __FUNCTION__ ];
425425
}
@@ -454,7 +454,7 @@ public function get_all_element_max_intersection_ratios(): array {
454454

455455
$result = ( function () {
456456
$elements_max_intersection_ratios = array();
457-
foreach ( $this->get_all_elements() as $xpath => $elements ) {
457+
foreach ( $this->get_xpath_elements_map() as $xpath => $elements ) {
458458
$element_intersection_ratios = array();
459459
foreach ( $elements as $element ) {
460460
$element_intersection_ratios[] = $element->get_intersection_ratio();

plugins/optimization-detective/tests/test-class-od-url-metrics-group-collection.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ public function data_provider_element_max_intersection_ratios(): array {
710710
*
711711
* @covers ::get_all_element_max_intersection_ratios
712712
* @covers ::get_element_max_intersection_ratio
713-
* @covers ::get_all_elements
713+
* @covers ::get_xpath_elements_map
714714
*
715715
* @dataProvider data_provider_element_max_intersection_ratios
716716
*
@@ -729,7 +729,7 @@ public function test_get_all_element_max_intersection_ratios( array $url_metrics
729729
}
730730

731731
// Check get_all_denormalized_elements.
732-
$all_elements = $group_collection->get_all_elements();
732+
$all_elements = $group_collection->get_xpath_elements_map();
733733
$xpath_counts = array();
734734
foreach ( $url_metrics as $url_metric ) {
735735
foreach ( $url_metric->get_elements() as $element ) {

0 commit comments

Comments
 (0)