Skip to content
Open
Show file tree
Hide file tree
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
styleci.io suggestions
  • Loading branch information
caseycs committed Jan 5, 2024
commit 7e9abbae1cd1f4c7d99a95e6af7bf7ef236fd902
2 changes: 1 addition & 1 deletion lib/Github/Api/Organization.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
use Github\Api\Organization\Actions\Secrets;
use Github\Api\Organization\Actions\SelfHostedRunners;
use Github\Api\Organization\Actions\Variables;
use Github\Api\Organization\Dependabot;
use Github\Api\Organization\Hooks;
use Github\Api\Organization\Members;
use Github\Api\Organization\OutsideCollaborators;
use Github\Api\Organization\SecretScanning;
use Github\Api\Organization\Teams;
use Github\Api\Organization\Dependabot;

/**
* Getting organization information and managing authenticated organization account information.
Expand Down
2 changes: 1 addition & 1 deletion lib/Github/Api/Organization/Dependabot.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ class Dependabot extends AbstractApi
*/
public function alerts(string $organization, array $params = [])
{
return $this->get('/orgs/' . rawurlencode($organization) . '/dependabot/alerts', $params);
return $this->get('/orgs/'.rawurlencode($organization).'/dependabot/alerts', $params);
}
}