@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | $wsdl = $configExternal->get('salesforce.wsdl'); |
| 47 | 47 | |
| 48 | 48 | if (empty($wsdl)) { |
| 49 | - $wsdl = __DIR__ . '/Wsdl/enterprise.wsdl.xml'; |
|
| 49 | + $wsdl = __DIR__.'/Wsdl/enterprise.wsdl.xml'; |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | $user = $configExternal->get('salesforce.username'); |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | $this->sfh->createConnection($wsdl); |
| 58 | 58 | $this->sfh->login($user, $pass, $token); |
| 59 | 59 | } catch (Exception $e) { |
| 60 | - throw new SalesforceException('Exception at Constructor' . $e->getMessage() . "\n\n" . $e->getTraceAsString()); |
|
| 60 | + throw new SalesforceException('Exception at Constructor'.$e->getMessage()."\n\n".$e->getTraceAsString()); |
|
| 61 | 61 | } |
| 62 | 62 | } |
| 63 | 63 | |