Fix name of jumpstart zone add option to jump_start

This commit is contained in:
Darin Randal
2018-01-23 09:57:14 -05:00
parent cd2fd73cc3
commit 45cb8ee539

View File

@@ -23,15 +23,15 @@ class Zones implements API
* @SuppressWarnings(PHPMD.BooleanArgumentFlag)
*
* @param string $name
* @param bool $jumpstart
* @param bool $jump_start
* @param string $organizationID
* @return \stdClass
*/
public function addZone(string $name, bool $jumpstart = false, string $organizationID = ''): \stdClass
public function addZone(string $name, bool $jump_start = false, string $organizationID = ''): \stdClass
{
$options = [
'name' => $name,
'jumpstart' => $jumpstart
'jump_start' => $jump_start
];
if (!empty($organizationID)) {