@@ -69,7 +69,7 @@ |
||
69 | 69 | |
70 | 70 | return $this->provider->getAuthenticatedRequest( |
71 | 71 | $verb, |
72 | - self::BASE_URI . $path, |
|
72 | + self::BASE_URI.$path, |
|
73 | 73 | $this->accessToken |
74 | 74 | ); |
75 | 75 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function __toString() |
31 | 31 | { |
32 | - return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; |
|
32 | + return __CLASS__.": [{$this->code}]: {$this->message}\n"; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | if (is_array($object->message) || is_object($object->message)) { |
43 | 43 | $output = ''; |
44 | 44 | foreach ($object->message as $message) { |
45 | - $output .= $message . PHP_EOL; |
|
45 | + $output .= $message.PHP_EOL; |
|
46 | 46 | } |
47 | 47 | $this->message = $output; |
48 | 48 | } else { |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($alert) { |
|
22 | + function($alert) { |
|
23 | 23 | return new InsightAlertResponse($alert); |
24 | 24 | }, |
25 | 25 | $alerts |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($module) { |
|
22 | + function($module) { |
|
23 | 23 | return new InsightModuleResponse($module); |
24 | 24 | }, |
25 | 25 | $modules |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($branch) { |
|
22 | + function($branch) { |
|
23 | 23 | return new BranchResponse($branch); |
24 | 24 | }, |
25 | 25 | $branches |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($domain) { |
|
22 | + function($domain) { |
|
23 | 23 | return new DomainResponse($domain); |
24 | 24 | }, |
25 | 25 | $domains |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($notification) { |
|
22 | + function($notification) { |
|
23 | 23 | return new NotificationResponse($notification); |
24 | 24 | }, |
25 | 25 | $notifications |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($member) { |
|
22 | + function($member) { |
|
23 | 23 | return new MemberResponse($member); |
24 | 24 | }, |
25 | 25 | $members |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | parent::__construct( |
21 | 21 | array_map( |
22 | - function ($idp) { |
|
22 | + function($idp) { |
|
23 | 23 | return new IdentityProviderResponse($idp); |
24 | 24 | }, |
25 | 25 | $idps |