Skip to content

Commit 7a1b892

Browse files
Use isset() instead of array_key_exists()
Co-authored-by: felixarntz <[email protected]>
1 parent 9e30d5f commit 7a1b892

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ final class OD_URL_Metric implements JsonSerializable {
6666
* @throws OD_Data_Validation_Exception When the input is invalid.
6767
*/
6868
public function __construct( array $data ) {
69-
if ( ! array_key_exists( 'uuid', $data ) ) {
69+
if ( ! isset( $data['uuid'] ) ) {
7070
$data['uuid'] = wp_generate_uuid4();
7171
}
7272
$this->validate_data( $data );

0 commit comments

Comments
 (0)