Skip to content

Commit b9b9a8c

Browse files
committed
Fix linting
1 parent 5a36fc2 commit b9b9a8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

http-concat.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Author: Automattic
77
* Version: 1.0
88
*/
9-
if (extension_loaded('newrelic')) { // Ensure PHP agent is available
9+
if ( extension_loaded( 'newrelic' ) ) { // Ensure PHP agent is available
1010
newrelic_ignore_transaction();
1111
}
1212

prometheus.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Automattic\VIP\Prometheus\Potential_Multi_Dataset_Queries_Collector;
1111
use Automattic\VIP\Prometheus\Multisite_Stats_Collector;
1212
// @codeCoverageIgnoreStart -- this file is loaded before tests start
13-
if (extension_loaded('newrelic')) { // Ensure PHP agent is available
13+
if ( extension_loaded( 'newrelic' ) ) { // Ensure PHP agent is available
1414
newrelic_ignore_transaction();
1515
}
1616

0 commit comments

Comments
 (0)