Rename $jump_start to $jumpStart to follow camelCase conventions for variables

This commit is contained in:
Darin Randal
2018-01-23 10:08:40 -05:00
parent fe854e1b21
commit 0112425a61

View File

@@ -27,11 +27,11 @@ class Zones implements API
* @param string $organizationID
* @return \stdClass
*/
public function addZone(string $name, bool $jump_start = false, string $organizationID = ''): \stdClass
public function addZone(string $name, bool $jumpStart = false, string $organizationID = ''): \stdClass
{
$options = [
'name' => $name,
'jump_start' => $jump_start
'jump_start' => $jumpStart
];
if (!empty($organizationID)) {