Skip to content

Commit

Permalink
Corrected code standard
Browse files Browse the repository at this point in the history
  • Loading branch information
artemboyko43 committed Oct 19, 2023
1 parent 5b07d65 commit 6af59e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/quanthub_sdmx_sync/src/QuanthubSdmxClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public function datasetIndicators(string $urn, string $dimension_id = '', array
if ($concept['id'] == $indicator_concept_identity_id) {
$indicator_enumeration = $concept['coreRepresentation']['enumeration'];
// Remove versions because we don't need this here.
$indicator_enumeration = preg_replace('/\(.*\)/','', $indicator_enumeration);
$indicator_enumeration = preg_replace('/\(.*\)/', '', $indicator_enumeration);
}
}
}
Expand Down

0 comments on commit 6af59e2

Please sign in to comment.