Skip to content

Commit e16a14c

Browse files
Reformat code
1 parent f4e822e commit e16a14c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

lib/Github/Api/Copilot/Usage.php

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,27 @@ class Usage extends AbstractApi
88
{
99
public function orgUsageSummary(string $organization, array $params = []): array
1010
{
11-
return $this->get('/orgs/' . rawurlencode($organization) . '/copilot/usage', $params);
11+
return $this->get('/orgs/'.rawurlencode($organization).'/copilot/usage', $params);
1212
}
1313

1414
public function orgTeamUsageSummary(string $organization, string $teamSlug, array $params = []): array
1515
{
16-
return $this->get('/orgs/' . rawurlencode($organization) . '/teams/' . rawurlencode($teamSlug) . '/copilot/usage', $params);
16+
return $this->get(
17+
'/orgs/'.rawurlencode($organization).'/teams/'.rawurlencode($teamSlug).'/copilot/usage',
18+
$params
19+
);
1720
}
1821

1922
public function enterpriseUsageSummary(string $enterprise, array $params = []): array
2023
{
21-
return $this->get('/enterprises/' . rawurlencode($enterprise) . '/copilot/usage', $params);
24+
return $this->get('/enterprises/'.rawurlencode($enterprise).'/copilot/usage', $params);
2225
}
2326

2427
public function enterpriseTeamUsageSummary(string $enterprise, string $teamSlug, array $params = []): array
2528
{
26-
return $this->get('/enterprises/' . rawurlencode($enterprise) . '/teams/' . rawurlencode($teamSlug) . '/copilot/usage', $params);
29+
return $this->get(
30+
'/enterprises/'.rawurlencode($enterprise).'/teams/'.rawurlencode($teamSlug).'/copilot/usage',
31+
$params
32+
);
2733
}
2834
}

0 commit comments

Comments
 (0)