File tree 2 files changed +5
-5
lines changed
plugins/optimization-detective
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 38
38
* }
39
39
* @phpstan-type Data array{
40
40
* uuid: non-empty-string,
41
- * eTag ?: string,
41
+ * etag ?: string,
42
42
* url: non-empty-string,
43
43
* timestamp: float,
44
44
* viewport: ViewportRect,
@@ -156,7 +156,7 @@ public function set_group( OD_URL_Metric_Group $group ): void {
156
156
* Gets JSON schema for URL Metric.
157
157
*
158
158
* @since 0.1.0
159
- * @since n.e.x.t Added the 'eTag ' property to the schema.
159
+ * @since n.e.x.t Added the 'etag ' property to the schema.
160
160
*
161
161
* @todo Cache the return value?
162
162
*
@@ -210,7 +210,7 @@ public static function get_json_schema(): array {
210
210
'required ' => true ,
211
211
'readonly ' => true , // Omit from REST API.
212
212
),
213
- 'eTag ' => array (
213
+ 'etag ' => array (
214
214
'description ' => __ ( 'The ETag for the URL Metric. ' , 'optimization-detective ' ),
215
215
'type ' => 'string ' ,
216
216
'required ' => false , // To be made required in a future release.
@@ -434,7 +434,7 @@ public function get_uuid(): string {
434
434
*/
435
435
public function get_etag (): ?string {
436
436
// Since the ETag is optional for now, return null for old URL Metrics that do not have one.
437
- return $ this ->data ['eTag ' ] ?? null ;
437
+ return $ this ->data ['etag ' ] ?? null ;
438
438
}
439
439
440
440
/**
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ function od_handle_rest_request( WP_REST_Request $request ) {
188
188
// Now supply the readonly args which were omitted from the REST API params due to being `readonly`.
189
189
'timestamp ' => microtime ( true ),
190
190
'uuid ' => wp_generate_uuid4 (),
191
- 'eTag ' => $ request ->get_param ( 'eTag ' ),
191
+ 'etag ' => $ request ->get_param ( 'eTag ' ),
192
192
)
193
193
)
194
194
);
You can’t perform that action at this time.
0 commit comments