@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | $body = new self(); |
28 | 28 | |
29 | - $body->userInformationPersistenceStatus = PropertyHelper::checkNullValue($amazonRequest,'userInformationPersistenceStatus'); |
|
29 | + $body->userInformationPersistenceStatus = PropertyHelper::checkNullValue($amazonRequest, 'userInformationPersistenceStatus'); |
|
30 | 30 | |
31 | 31 | return $body; |
32 | 32 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | { |
24 | 24 | $body = new self(); |
25 | 25 | |
26 | - $body->accessToken = PropertyHelper::checkNullValue($amazonRequest,'accessToken'); |
|
26 | + $body->accessToken = PropertyHelper::checkNullValue($amazonRequest, 'accessToken'); |
|
27 | 27 | |
28 | 28 | return $body; |
29 | 29 | } |
@@ -46,8 +46,8 @@ |
||
46 | 46 | $system->application = isset($amazonRequest['application']) ? Application::fromAmazonRequest($amazonRequest['application']) : null; |
47 | 47 | $system->user = isset($amazonRequest['user']) ? User::fromAmazonRequest($amazonRequest['user']) : null; |
48 | 48 | $system->device = isset($amazonRequest['device']) ? Device::fromAmazonRequest($amazonRequest['device']) : null; |
49 | - $system->apiAccessToken = PropertyHelper::checkNullValue($amazonRequest,'apiAccessToken'); |
|
50 | - $system->apiEndpoint = PropertyHelper::checkNullValue($amazonRequest,'apiEndpoint'); |
|
49 | + $system->apiAccessToken = PropertyHelper::checkNullValue($amazonRequest, 'apiAccessToken'); |
|
50 | + $system->apiEndpoint = PropertyHelper::checkNullValue($amazonRequest, 'apiEndpoint'); |
|
51 | 51 | |
52 | 52 | return $system; |
53 | 53 | } |