Skip to content

Commit 9043d99

Browse files
author
Jamie Hannaford
committed
better alignment
1 parent 5cbfd94 commit 9043d99

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/Compute/v2/Models/Server.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ class Server extends AbstractResource implements
8585

8686
protected $aliases = [
8787
'block_device_mapping_v2' => 'blockDeviceMapping',
88-
'accessIPv4' => 'ipv4',
89-
'accessIPv6' => 'ipv6',
90-
'tenant_id' => 'tenantId',
91-
'user_id' => 'userId',
92-
'security_groups' => 'securityGroups',
93-
'OS-EXT-STS:task_state' => 'taskState',
88+
'accessIPv4' => 'ipv4',
89+
'accessIPv6' => 'ipv6',
90+
'tenant_id' => 'tenantId',
91+
'user_id' => 'userId',
92+
'security_groups' => 'securityGroups',
93+
'OS-EXT-STS:task_state' => 'taskState',
9494
];
9595

9696
/**
@@ -141,7 +141,7 @@ public function changePassword($newPassword)
141141
{
142142
$this->execute($this->api->changeServerPassword(), [
143143
'id' => $this->id,
144-
'password' => $newPassword
144+
'password' => $newPassword,
145145
]);
146146
}
147147

@@ -171,7 +171,7 @@ public function rebuild(array $options)
171171
{
172172
$options['id'] = $this->id;
173173
$response = $this->execute($this->api->rebuildServer(), $options);
174-
174+
175175
$this->populateFromResponse($response);
176176
}
177177

@@ -184,7 +184,7 @@ public function rebuild(array $options)
184184
public function resize($flavorId)
185185
{
186186
$response = $this->execute($this->api->resizeServer(), [
187-
'id' => $this->id,
187+
'id' => $this->id,
188188
'flavorId' => $flavorId,
189189
]);
190190

0 commit comments

Comments
 (0)