@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | $wsdl = $configExternal->get('laravel-salesforce::wsdl'); |
| 54 | 54 | |
| 55 | 55 | if (empty($wsdl)) { |
| 56 | - $wsdl = __DIR__ . '/Wsdl/enterprise.wsdl.xml'; |
|
| 56 | + $wsdl = __DIR__.'/Wsdl/enterprise.wsdl.xml'; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | $username = $configExternal->get('laravel-salesforce::username'); |
@@ -62,9 +62,9 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | try { |
| 64 | 64 | $this->sfh->createConnection($wsdl); |
| 65 | - $this->sfh->login($username, $password . $token); |
|
| 65 | + $this->sfh->login($username, $password.$token); |
|
| 66 | 66 | } catch (Exception $e) { |
| 67 | - throw new SalesforceException('Exception at Constructor' . $e->getMessage() . "\n\n" . $e->getTraceAsString()); |
|
| 67 | + throw new SalesforceException('Exception at Constructor'.$e->getMessage()."\n\n".$e->getTraceAsString()); |
|
| 68 | 68 | } |
| 69 | 69 | } |
| 70 | 70 | |