Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cs
  • Loading branch information
staabm committed Apr 11, 2026
commit c9e08aa303926df19195ee7059a6529b03c1a508
5 changes: 3 additions & 2 deletions src/Command/BisectCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use function chmod;
use function count;
use function escapeshellarg;
use function extension_loaded;
use function getenv;
use function implode;
use function is_array;
Expand Down Expand Up @@ -106,7 +107,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
return 1;
}

$headers = [
$headers = [
Comment thread
staabm marked this conversation as resolved.
Outdated
'Authorization' => 'token ' . $token,
'Accept' => 'application/vnd.github.v3+json',
];
Expand All @@ -117,7 +118,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$client = new Client([
RequestOptions::TIMEOUT => 30,
RequestOptions::CONNECT_TIMEOUT => 10,
'headers' => $headers
'headers' => $headers,
]);

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