We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e30d5f commit 7a1b892Copy full SHA for 7a1b892
plugins/optimization-detective/class-od-url-metric.php
@@ -66,7 +66,7 @@ final class OD_URL_Metric implements JsonSerializable {
66
* @throws OD_Data_Validation_Exception When the input is invalid.
67
*/
68
public function __construct( array $data ) {
69
- if ( ! array_key_exists( 'uuid', $data ) ) {
+ if ( ! isset( $data['uuid'] ) ) {
70
$data['uuid'] = wp_generate_uuid4();
71
}
72
$this->validate_data( $data );
0 commit comments