Completed
Push — master ( 080cf5...aaebc2 )
by Davis
21s
created
src/Davispeixoto/Laravel5Salesforce/SalesforceServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@
 block discarded – undo
30 30
      */
31 31
     public function register()
32 32
     {
33
-        $config = __DIR__ . '/config/config.php';
33
+        $config = __DIR__.'/config/config.php';
34 34
         $this->mergeConfigFrom($config, 'salesforce');
35 35
         $this->publishes([$config => config_path('salesforce.php')]);
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.