@@ -107,7 +107,7 @@ |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
110 | - * @param $organizationName |
|
110 | + * @param string $organizationName |
|
111 | 111 | * @return array|bool |
112 | 112 | * @throws WrongOrganizationName |
113 | 113 | */ |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function setOrganization($organizationName) |
82 | 82 | { |
83 | - if($organization = $this->getOrganizationByName($organizationName)) { |
|
83 | + if ($organization = $this->getOrganizationByName($organizationName)) { |
|
84 | 84 | $this->setOrganizationId($organization['organizationId']); |
85 | 85 | } |
86 | 86 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | { |
133 | 133 | $endpoint = strtolower($endpoint); |
134 | 134 | |
135 | - if(isset($this->endpoints[$endpoint])) { |
|
135 | + if (isset($this->endpoints[$endpoint])) { |
|
136 | 136 | return $this->endpoints[$endpoint]; |
137 | 137 | } |
138 | 138 |