Skip to content

Commit

Permalink
Fix IDE create endpoint. (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash authored Apr 10, 2020
1 parent 859c6cd commit 3a5a66b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Endpoints/Ides.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ public function get($ideUuid)
* Creates a new remote IDE.
*
* @param string $applicationUuid
* @param string $name
* @param string $label
* @return OperationResponse
*/
public function create($applicationUuid, $name)
public function create($applicationUuid, $label)
{

$options = [
'form_params' => [
'name' => $name,
'label' => $label,
],
];

Expand Down

0 comments on commit 3a5a66b

Please sign in to comment.