File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,27 @@ class Usage extends AbstractApi
8
8
{
9
9
public function orgUsageSummary (string $ organization , array $ params = []): array
10
10
{
11
- return $ this ->get ('/orgs/ ' . rawurlencode ($ organization ) . '/copilot/usage ' , $ params );
11
+ return $ this ->get ('/orgs/ ' . rawurlencode ($ organization ). '/copilot/usage ' , $ params );
12
12
}
13
13
14
14
public function orgTeamUsageSummary (string $ organization , string $ teamSlug , array $ params = []): array
15
15
{
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
+ );
17
20
}
18
21
19
22
public function enterpriseUsageSummary (string $ enterprise , array $ params = []): array
20
23
{
21
- return $ this ->get ('/enterprises/ ' . rawurlencode ($ enterprise ) . '/copilot/usage ' , $ params );
24
+ return $ this ->get ('/enterprises/ ' . rawurlencode ($ enterprise ). '/copilot/usage ' , $ params );
22
25
}
23
26
24
27
public function enterpriseTeamUsageSummary (string $ enterprise , string $ teamSlug , array $ params = []): array
25
28
{
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
+ );
27
33
}
28
34
}
You can’t perform that action at this time.
0 commit comments