Skip to content

Commit 384fa53

Browse files
committed
Use properties instead of get methods
1 parent 22711e4 commit 384fa53

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ private function create_groups(): array {
193193
*/
194194
public function add_url_metric( OD_URL_Metric $new_url_metric ): void {
195195
foreach ( $this->groups as $group ) {
196-
if ( $group->is_viewport_width_in_range( $new_url_metric->get_viewport_width() ) ) {
196+
if ( $group->is_viewport_width_in_range( $new_url_metric->viewport['width'] ) ) {
197197
$group->add_url_metric( $new_url_metric );
198198
return;
199199
}
@@ -416,7 +416,7 @@ public function get_all_element_max_intersection_ratios(): array {
416416
*/
417417
foreach ( $this->groups as $group ) {
418418
foreach ( $group as $url_metric ) {
419-
foreach ( $url_metric->get_elements() as $element ) {
419+
foreach ( $url_metric->elements as $element ) {
420420
$element_max_intersection_ratios[ $element['xpath'] ] = array_key_exists( $element['xpath'], $element_max_intersection_ratios )
421421
? max( $element_max_intersection_ratios[ $element['xpath'] ], $element['intersectionRatio'] )
422422
: $element['intersectionRatio'];

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public function is_viewport_width_in_range( int $viewport_width ): bool {
181181
* @param OD_URL_Metric $url_metric URL metric.
182182
*/
183183
public function add_url_metric( OD_URL_Metric $url_metric ): void {
184-
if ( ! $this->is_viewport_width_in_range( $url_metric->get_viewport_width() ) ) {
184+
if ( ! $this->is_viewport_width_in_range( $url_metric->viewport['width'] ) ) {
185185
throw new InvalidArgumentException(
186186
esc_html__( 'URL metric is not in the viewport range for group.', 'optimization-detective' )
187187
);
@@ -201,7 +201,7 @@ public function add_url_metric( OD_URL_Metric $url_metric ): void {
201201
usort(
202202
$this->url_metrics,
203203
static function ( OD_URL_Metric $a, OD_URL_Metric $b ): int {
204-
return $b->get_timestamp() <=> $a->get_timestamp();
204+
return $b->timestamp <=> $a->timestamp;
205205
}
206206
);
207207

@@ -283,7 +283,7 @@ public function get_lcp_element(): ?array {
283283
$breadcrumb_element = array();
284284

285285
foreach ( $this->url_metrics as $url_metric ) {
286-
foreach ( $url_metric->get_elements() as $element ) {
286+
foreach ( $url_metric->elements as $element ) {
287287
if ( ! $element['isLCP'] ) {
288288
continue;
289289
}

plugins/optimization-detective/storage/class-od-url-metrics-post-type.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public static function store_url_metric( string $slug, OD_URL_Metric $new_url_me
200200
// multiple URL Metric instances, each of which also contains the URL for which the metric was captured. The URL
201201
// appearing in the post title is therefore the most recent URL seen for the URL Metrics which have the same
202202
// normalized query vars among them.
203-
'post_title' => $new_url_metric->get_url(),
203+
'post_title' => $new_url_metric->url,
204204
);
205205

206206
$post = self::get_post( $slug );
@@ -221,7 +221,7 @@ public static function store_url_metric( string $slug, OD_URL_Metric $new_url_me
221221
);
222222

223223
try {
224-
$group = $group_collection->get_group_for_viewport_width( $new_url_metric->get_viewport_width() );
224+
$group = $group_collection->get_group_for_viewport_width( $new_url_metric->viewport['width'] );
225225
$group->add_url_metric( $new_url_metric );
226226
} catch ( InvalidArgumentException $e ) {
227227
return new WP_Error( 'invalid_url_metric', $e->getMessage() );

0 commit comments

Comments
 (0)