Skip to content

Commit 6085ee3

Browse files
committed
chore: fix cs in compute sample
1 parent 5ad66db commit 6085ee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compute/firewall/src/print_firewall_rule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function print_firewall_rule(string $projectId, string $firewallRuleName)
5454
printf('Self Link: %s' . PHP_EOL, $response->getSelfLink());
5555
printf('Logging Enabled: %s' . PHP_EOL, var_export($response->getLogConfig()->getEnable(), true));
5656
print('--Allowed--' . PHP_EOL);
57-
foreach ($response->getAllowed()as $item) {
57+
foreach ($response->getAllowed() as $item) {
5858
printf('Protocol: %s' . PHP_EOL, $item->getIPProtocol());
5959
foreach ($item->getPorts() as $ports) {
6060
printf(' - Ports: %s' . PHP_EOL, $ports);

0 commit comments

Comments
 (0)