Skip to content

Commit ff6d87b

Browse files
author
TLingC
committed
Merge branch 'develop'
2 parents ae0b585 + f05579b commit ff6d87b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Actions/ManagesServers.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public function server(int $serverId, array $includes = ['allocations'])
3535
/**
3636
* Get a server instance by external id.
3737
*
38-
* @param int $externalId
39-
* @param array $includes
38+
* @param string $externalId
39+
* @param array $includes
4040
*
4141
* @return Server
4242
*/
43-
public function serverEx(int $externalId, array $includes = ['allocations'])
43+
public function serverEx(string $externalId, array $includes = ['allocations'])
4444
{
4545
return $this->get("api/application/servers/external/$externalId".$this->include($includes));
4646
}

src/Resources/Egg.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Egg extends Resource
4444
*
4545
* @var string
4646
*/
47-
public $docker_image;
47+
public $dockerImage;
4848

4949
/**
5050
* The config of the egg.

0 commit comments

Comments
 (0)