1
1
<?php
2
2
/**
3
- * Optimization Detective: OD_URL_Metrics_Group_Collection class
3
+ * Optimization Detective: OD_URL_Metric_Group_Collection class
4
4
*
5
5
* @package optimization-detective
6
6
* @since 0.1.0
16
16
*
17
17
* @phpstan-import-type ElementData from OD_URL_Metric
18
18
*
19
- * @implements IteratorAggregate<int, OD_URL_Metrics_Group >
19
+ * @implements IteratorAggregate<int, OD_URL_Metric_Group >
20
20
*
21
21
* @since 0.1.0
22
22
* @access private
23
23
*/
24
- final class OD_URL_Metrics_Group_Collection implements Countable, IteratorAggregate, JsonSerializable {
24
+ final class OD_URL_Metric_Group_Collection implements Countable, IteratorAggregate, JsonSerializable {
25
25
26
26
/**
27
- * URL metrics groups.
27
+ * URL metric groups.
28
28
*
29
29
* The number of groups corresponds to one greater than the number of
30
30
* breakpoints. This is because breakpoints are the dividing line between
31
31
* the groups of URL metrics with specific viewport widths. This extends
32
32
* even to when there are zero breakpoints: there will still be one group
33
33
* in this case, in which every single URL metric is added.
34
34
*
35
- * @var OD_URL_Metrics_Group []
36
- * @phpstan-var non-empty-array<OD_URL_Metrics_Group >
35
+ * @var OD_URL_Metric_Group []
36
+ * @phpstan-var non-empty-array<OD_URL_Metric_Group >
37
37
*/
38
38
private $ groups ;
39
39
@@ -74,11 +74,11 @@ final class OD_URL_Metrics_Group_Collection implements Countable, IteratorAggreg
74
74
* Result cache.
75
75
*
76
76
* @var array{
77
- * get_group_for_viewport_width?: array<int, OD_URL_Metrics_Group >,
77
+ * get_group_for_viewport_width?: array<int, OD_URL_Metric_Group >,
78
78
* is_every_group_populated?: bool,
79
79
* is_any_group_populated?: bool,
80
80
* is_every_group_complete?: bool,
81
- * get_groups_by_lcp_element?: array<string, OD_URL_Metrics_Group []>,
81
+ * get_groups_by_lcp_element?: array<string, OD_URL_Metric_Group []>,
82
82
* get_common_lcp_element?: ElementData|null,
83
83
* get_all_element_max_intersection_ratios?: array<string, float>
84
84
* }
@@ -167,18 +167,18 @@ public function clear_cache(): void {
167
167
/**
168
168
* Create groups.
169
169
*
170
- * @phpstan-return non-empty-array<OD_URL_Metrics_Group >
170
+ * @phpstan-return non-empty-array<OD_URL_Metric_Group >
171
171
*
172
- * @return OD_URL_Metrics_Group [] Groups.
172
+ * @return OD_URL_Metric_Group [] Groups.
173
173
*/
174
174
private function create_groups (): array {
175
175
$ groups = array ();
176
176
$ min_width = 0 ;
177
177
foreach ( $ this ->breakpoints as $ max_width ) {
178
- $ groups [] = new OD_URL_Metrics_Group ( array (), $ min_width , $ max_width , $ this ->sample_size , $ this ->freshness_ttl , $ this );
178
+ $ groups [] = new OD_URL_Metric_Group ( array (), $ min_width , $ max_width , $ this ->sample_size , $ this ->freshness_ttl , $ this );
179
179
$ min_width = $ max_width + 1 ;
180
180
}
181
- $ groups [] = new OD_URL_Metrics_Group ( array (), $ min_width , PHP_INT_MAX , $ this ->sample_size , $ this ->freshness_ttl , $ this );
181
+ $ groups [] = new OD_URL_Metric_Group ( array (), $ min_width , PHP_INT_MAX , $ this ->sample_size , $ this ->freshness_ttl , $ this );
182
182
return $ groups ;
183
183
}
184
184
@@ -209,9 +209,9 @@ public function add_url_metric( OD_URL_Metric $new_url_metric ): void {
209
209
* @throws InvalidArgumentException When there is no group for the provided viewport width. This would only happen if a negative width is provided.
210
210
*
211
211
* @param int $viewport_width Viewport width.
212
- * @return OD_URL_Metrics_Group URL metrics group for the viewport width.
212
+ * @return OD_URL_Metric_Group URL metric group for the viewport width.
213
213
*/
214
- public function get_group_for_viewport_width ( int $ viewport_width ): OD_URL_Metrics_Group {
214
+ public function get_group_for_viewport_width ( int $ viewport_width ): OD_URL_Metric_Group {
215
215
if ( array_key_exists ( __FUNCTION__ , $ this ->result_cache ) && array_key_exists ( $ viewport_width , $ this ->result_cache [ __FUNCTION__ ] ) ) {
216
216
return $ this ->result_cache [ __FUNCTION__ ][ $ viewport_width ];
217
217
}
@@ -225,8 +225,8 @@ public function get_group_for_viewport_width( int $viewport_width ): OD_URL_Metr
225
225
throw new InvalidArgumentException (
226
226
esc_html (
227
227
sprintf (
228
- /* translators: %d is viewport width */
229
- __ ( 'No URL metrics group found for viewport width: %d ' , 'optimization-detective ' ),
228
+ /* translators: %d is viewport width */
229
+ __ ( 'No URL metric group found for viewport width: %d ' , 'optimization-detective ' ),
230
230
$ viewport_width
231
231
)
232
232
)
@@ -268,7 +268,7 @@ public function is_any_group_populated(): bool {
268
268
* should be contrasted with the `is_every_group_complete()`
269
269
* method below.
270
270
*
271
- * @see OD_URL_Metrics_Group_Collection ::is_every_group_complete()
271
+ * @see OD_URL_Metric_Group_Collection ::is_every_group_complete()
272
272
*
273
273
* @return bool Whether all groups have some URL metrics.
274
274
*/
@@ -293,7 +293,7 @@ public function is_every_group_populated(): bool {
293
293
/**
294
294
* Checks whether every group is complete.
295
295
*
296
- * @see OD_URL_Metrics_Group ::is_complete()
296
+ * @see OD_URL_Metric_Group ::is_complete()
297
297
*
298
298
* @return bool Whether all groups are complete.
299
299
*/
@@ -319,10 +319,11 @@ public function is_every_group_complete(): bool {
319
319
/**
320
320
* Gets the groups with the provided LCP element XPath.
321
321
*
322
- * @see OD_URL_Metrics_Group ::get_lcp_element()
322
+ * @see OD_URL_Metric_Group ::get_lcp_element()
323
323
*
324
324
* @param string $xpath XPath for LCP element.
325
- * @return OD_URL_Metrics_Group[] Groups which have the LCP element.
325
+ *
326
+ * @return OD_URL_Metric_Group[] Groups which have the LCP element.
326
327
*/
327
328
public function get_groups_by_lcp_element ( string $ xpath ): array {
328
329
if ( array_key_exists ( __FUNCTION__ , $ this ->result_cache ) && array_key_exists ( $ xpath , $ this ->result_cache [ __FUNCTION__ ] ) ) {
@@ -460,14 +461,14 @@ public function get_flattened_url_metrics(): array {
460
461
/**
461
462
* Returns an iterator for the groups of URL metrics.
462
463
*
463
- * @return ArrayIterator<int, OD_URL_Metrics_Group > Array iterator for OD_URL_Metric_Group instances.
464
+ * @return ArrayIterator<int, OD_URL_Metric_Group > Array iterator for OD_URL_Metric_Group instances.
464
465
*/
465
466
public function getIterator (): ArrayIterator {
466
467
return new ArrayIterator ( $ this ->groups );
467
468
}
468
469
469
470
/**
470
- * Counts the URL metrics groups in the collection.
471
+ * Counts the URL metric groups in the collection.
471
472
*
472
473
* @return int<0, max> Group count.
473
474
*/
@@ -507,7 +508,7 @@ public function jsonSerialize(): array {
507
508
'every_group_complete ' => $ this ->is_every_group_complete (),
508
509
'every_group_populated ' => $ this ->is_every_group_populated (),
509
510
'groups ' => array_map (
510
- static function ( OD_URL_Metrics_Group $ group ): array {
511
+ static function ( OD_URL_Metric_Group $ group ): array {
511
512
$ group_data = $ group ->jsonSerialize ();
512
513
// Remove redundant data.
513
514
unset(
0 commit comments