Skip to content

Commit 810a43b

Browse files
committed
cs
1 parent ff7fe8d commit 810a43b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Command/BisectCommand.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
use function chmod;
2424
use function count;
2525
use function escapeshellarg;
26+
use function extension_loaded;
2627
use function getenv;
2728
use function implode;
2829
use function is_array;
@@ -106,7 +107,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
106107
return 1;
107108
}
108109

109-
$headers = [
110+
$headers = [
110111
'Authorization' => 'token ' . $token,
111112
'Accept' => 'application/vnd.github.v3+json',
112113
];
@@ -117,7 +118,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
117118
$client = new Client([
118119
RequestOptions::TIMEOUT => 30,
119120
RequestOptions::CONNECT_TIMEOUT => 10,
120-
'headers' => $headers
121+
'headers' => $headers,
121122
]);
122123

123124
$io->section(sprintf('Fetching commits between %s and %s...', $good, $bad));

0 commit comments

Comments
 (0)