@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | $wsdl = $configExternal->get('salesforce.wsdl'); |
| 25 | 25 | |
| 26 | 26 | if (empty($wsdl)) { |
| 27 | - $wsdl = __DIR__ . '/Wsdl/enterprise.wsdl.xml'; |
|
| 27 | + $wsdl = __DIR__.'/Wsdl/enterprise.wsdl.xml'; |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | $user = $configExternal->get('salesforce.username'); |
@@ -33,9 +33,9 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | try { |
| 35 | 35 | $this->sfh->createConnection($wsdl); |
| 36 | - $this->sfh->login($user, $pass . $token); |
|
| 36 | + $this->sfh->login($user, $pass.$token); |
|
| 37 | 37 | } catch (Exception $e) { |
| 38 | - throw new SalesforceException('Exception at Constructor' . $e->getMessage() . "\n\n" . $e->getTraceAsString()); |
|
| 38 | + throw new SalesforceException('Exception at Constructor'.$e->getMessage()."\n\n".$e->getTraceAsString()); |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | |