Completed
Push — master ( 593b59...9d6efa )
by Davis
02:23
created
src/config/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,5 +13,5 @@
 block discarded – undo
13 13
     'username' => '',
14 14
     'password' => '',
15 15
     'token' => '',
16
-    'wsdl' => app_path() . '/wsdl/enterprise.wsdl.xml',
16
+    'wsdl' => app_path().'/wsdl/enterprise.wsdl.xml',
17 17
 );
Please login to merge, or discard this patch.
src/config/local/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,5 +13,5 @@
 block discarded – undo
13 13
     'username' => '',
14 14
     'password' => '',
15 15
     'token' => '',
16
-    'wsdl' => app_path() . '/wsdl/enterprise.sandbox.wsdl.xml',
16
+    'wsdl' => app_path().'/wsdl/enterprise.sandbox.wsdl.xml',
17 17
 );
Please login to merge, or discard this patch.
src/Davispeixoto/LaravelSalesforce/LaravelSalesforceServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function register()
36 36
     {
37
-        $this->app->singleton('salesforce', function ($app) {
37
+        $this->app->singleton('salesforce', function($app) {
38 38
             $sf = new Salesforce(new Client());
39 39
             $sf->connect($app['config']);
40 40
 
Please login to merge, or discard this patch.
src/Davispeixoto/LaravelSalesforce/Salesforce.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.