Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/OpenCloud/Compute/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function __construct(Client $client, $type = null, $name = null, $region
*
* @api
* @param string $id - if specified, the server with the ID is retrieved
* @returns Resource\Server object
* @return Resource\Server object
*/
public function server($id = null)
{
Expand All @@ -102,7 +102,7 @@ public function server($id = null)
* not having all the information you need.
* @param array $filter - a set of key/value pairs that is passed to the
* servers list for filtering
* @returns \OpenCloud\Common\Collection
* @return \OpenCloud\Common\Collection\PaginatedIterator
*/
public function serverList($details = true, array $filter = array())
{
Expand All @@ -128,7 +128,7 @@ public function network($id = null)
*
* @api
* @param array $filter array of filter key/value pairs
* @return \OpenCloud\Common\Collection
* @return \OpenCloud\Common\Collection\PaginatedIterator
*/
public function networkList($filter = array())
{
Expand Down