Skip to content

Commit 08f8f8a

Browse files
committed
Improve naming for URL Metric schema properties
1 parent 63758ef commit 08f8f8a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* }
3939
* @phpstan-type Data array{
4040
* uuid: non-empty-string,
41-
* eTag?: string,
41+
* etag?: string,
4242
* url: non-empty-string,
4343
* timestamp: float,
4444
* viewport: ViewportRect,
@@ -156,7 +156,7 @@ public function set_group( OD_URL_Metric_Group $group ): void {
156156
* Gets JSON schema for URL Metric.
157157
*
158158
* @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.
160160
*
161161
* @todo Cache the return value?
162162
*
@@ -210,7 +210,7 @@ public static function get_json_schema(): array {
210210
'required' => true,
211211
'readonly' => true, // Omit from REST API.
212212
),
213-
'eTag' => array(
213+
'etag' => array(
214214
'description' => __( 'The ETag for the URL Metric.', 'optimization-detective' ),
215215
'type' => 'string',
216216
'required' => false, // To be made required in a future release.
@@ -434,7 +434,7 @@ public function get_uuid(): string {
434434
*/
435435
public function get_etag(): ?string {
436436
// 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;
438438
}
439439

440440
/**

plugins/optimization-detective/storage/rest-api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function od_handle_rest_request( WP_REST_Request $request ) {
188188
// Now supply the readonly args which were omitted from the REST API params due to being `readonly`.
189189
'timestamp' => microtime( true ),
190190
'uuid' => wp_generate_uuid4(),
191-
'eTag' => $request->get_param( 'eTag' ),
191+
'etag' => $request->get_param( 'eTag' ),
192192
)
193193
)
194194
);

0 commit comments

Comments
 (0)