Skip to content

Commit 0224914

Browse files
committed
Compute service
1 parent 8de8b27 commit 0224914

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/Compute/v2/Service.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
use OpenStack\Compute\v2\Models\Image;
99
use OpenStack\Compute\v2\Models\Keypair;
1010
use OpenStack\Compute\v2\Models\Limit;
11-
use OpenStack\Compute\v2\Models\QuotaSet;
1211
use OpenStack\Compute\v2\Models\Server;
1312
use OpenStack\Compute\v2\Models\Hypervisor;
13+
use OpenStack\Compute\v2\Models\QuotaSet;
1414

1515
/**
1616
* Compute v2 service for OpenStack.
@@ -35,10 +35,10 @@ public function createServer(array $options): Server
3535
/**
3636
* List servers.
3737
*
38-
* @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
38+
* @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
3939
* the ID, name and links attributes are returned, saving bandwidth.
40-
* @param array $options {@see \OpenStack\Compute\v2\Api::getServers}
41-
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
40+
* @param array $options {@see \OpenStack\Compute\v2\Api::getServers}
41+
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
4242
*
4343
* @return \Generator
4444
*/
@@ -70,8 +70,8 @@ public function getServer(array $options = []): Server
7070
/**
7171
* List flavors.
7272
*
73-
* @param array $options {@see \OpenStack\Compute\v2\Api::getFlavors}
74-
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
73+
* @param array $options {@see \OpenStack\Compute\v2\Api::getFlavors}
74+
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
7575
*
7676
* @return \Generator
7777
*/
@@ -112,8 +112,8 @@ public function createFlavor(array $options = []): Flavor
112112
/**
113113
* List images.
114114
*
115-
* @param array $options {@see \OpenStack\Compute\v2\Api::getImages}
116-
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
115+
* @param array $options {@see \OpenStack\Compute\v2\Api::getImages}
116+
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
117117
*
118118
* @return \Generator
119119
*/
@@ -142,8 +142,8 @@ public function getImage(array $options = []): Image
142142
/**
143143
* List key pairs.
144144
*
145-
* @param array $options {@see \OpenStack\Compute\v2\Api::getKeyPairs}
146-
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
145+
* @param array $options {@see \OpenStack\Compute\v2\Api::getKeyPairs}
146+
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
147147
*
148148
* @return \Generator
149149
*/
@@ -205,10 +205,10 @@ public function getHypervisorStatistics(): HypervisorStatistic
205205
/**
206206
* List hypervisors.
207207
*
208-
* @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
208+
* @param bool $detailed Determines whether detailed information will be returned. If FALSE is specified, only
209209
* the ID, name and links attributes are returned, saving bandwidth.
210-
* @param array $options {@see \OpenStack\Compute\v2\Api::getHypervisors}
211-
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
210+
* @param array $options {@see \OpenStack\Compute\v2\Api::getHypervisors}
211+
* @param callable $mapFn A callable function that will be invoked on every iteration of the list.
212212
*
213213
* @return \Generator
214214
*/

0 commit comments

Comments
 (0)