18
18
* @since 0.7.0
19
19
*
20
20
* @property-read WP_REST_Request<array<string, mixed>> $request Request.
21
- * @property-read positive-int $post_id ID for the od_url_metrics post.
21
+ * @property-read positive-int $url_metrics_id ID for the od_url_metrics post.
22
22
* @property-read OD_URL_Metric_Group_Collection $url_metric_group_collection URL Metric group collection.
23
23
* @property-read OD_URL_Metric_Group $url_metric_group URL Metric group.
24
24
* @property-read OD_URL_Metric $url_metric URL Metric.
25
+ * @property-read positive-int $post_id Deprecated alias for the $url_metrics_id property.
25
26
*/
26
27
final class OD_URL_Metric_Store_Request_Context {
27
28
@@ -36,10 +37,12 @@ final class OD_URL_Metric_Store_Request_Context {
36
37
/**
37
38
* ID for the od_url_metrics post.
38
39
*
39
- * @since 0.7.0
40
+ * This was originally $post_id which was introduced in 0.7.0.
41
+ *
42
+ * @since n.e.x.t
40
43
* @var positive-int
41
44
*/
42
- private $ post_id ;
45
+ private $ url_metrics_id ;
43
46
44
47
/**
45
48
* URL Metric group collection.
@@ -73,14 +76,14 @@ final class OD_URL_Metric_Store_Request_Context {
73
76
* @phpstan-param WP_REST_Request<array<string, mixed>> $request
74
77
*
75
78
* @param WP_REST_Request $request REST API request.
76
- * @param positive-int $post_id ID for the URL Metric post.
79
+ * @param positive-int $url_metrics_id ID for the URL Metric post.
77
80
* @param OD_URL_Metric_Group_Collection $url_metric_group_collection URL Metric group collection.
78
81
* @param OD_URL_Metric_Group $url_metric_group URL Metric group.
79
82
* @param OD_URL_Metric $url_metric URL Metric.
80
83
*/
81
- public function __construct ( WP_REST_Request $ request , int $ post_id , OD_URL_Metric_Group_Collection $ url_metric_group_collection , OD_URL_Metric_Group $ url_metric_group , OD_URL_Metric $ url_metric ) {
84
+ public function __construct ( WP_REST_Request $ request , int $ url_metrics_id , OD_URL_Metric_Group_Collection $ url_metric_group_collection , OD_URL_Metric_Group $ url_metric_group , OD_URL_Metric $ url_metric ) {
82
85
$ this ->request = $ request ;
83
- $ this ->post_id = $ post_id ;
86
+ $ this ->url_metrics_id = $ url_metrics_id ;
84
87
$ this ->url_metric_group_collection = $ url_metric_group_collection ;
85
88
$ this ->url_metric_group = $ url_metric_group ;
86
89
$ this ->url_metric = $ url_metric ;
@@ -100,14 +103,27 @@ public function __get( string $name ) {
100
103
switch ( $ name ) {
101
104
case 'request ' :
102
105
return $ this ->request ;
103
- case 'post_id ' :
104
- return $ this ->post_id ;
106
+ case 'url_metrics_id ' :
107
+ return $ this ->url_metrics_id ;
105
108
case 'url_metric_group_collection ' :
106
109
return $ this ->url_metric_group_collection ;
107
110
case 'url_metric_group ' :
108
111
return $ this ->url_metric_group ;
109
112
case 'url_metric ' :
110
113
return $ this ->url_metric ;
114
+ case 'post_id ' :
115
+ _doing_it_wrong (
116
+ esc_html ( __CLASS__ . '::$ ' . $ name ),
117
+ esc_html (
118
+ sprintf (
119
+ /* translators: %s is class member variable name */
120
+ __ ( 'Use %s instead. ' , 'optimization-detective ' ),
121
+ __CLASS__ . '::$url_metrics_id '
122
+ )
123
+ ),
124
+ 'optimization-detective n.e.x.t '
125
+ );
126
+ return $ this ->url_metrics_id ;
111
127
default :
112
128
throw new Error (
113
129
esc_html (
0 commit comments