Passed
Push — master ( fb4dbb...c2232b )
by Sreedev
02:27
created
src/Slack.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -60,16 +60,16 @@
 block discarded – undo
60 60
     }
61 61
    
62 62
 
63
-     /**
64
-     * Performs the underlying HTTP request. Not very exciting.
65
-     *
66
-     * @param  string $http_verb The HTTP verb to use: get, post, put, patch, delete
67
-     * @param  string $method    The API method to be called
68
-     * @param  array  $args      Assoc array of parameters to be passed
69
-     * @param int     $timeout
70
-     *
71
-     * @return array|false Assoc array of decoded result
72
-     */
63
+        /**
64
+         * Performs the underlying HTTP request. Not very exciting.
65
+         *
66
+         * @param  string $http_verb The HTTP verb to use: get, post, put, patch, delete
67
+         * @param  string $method    The API method to be called
68
+         * @param  array  $args      Assoc array of parameters to be passed
69
+         * @param int     $timeout
70
+         *
71
+         * @return array|false Assoc array of decoded result
72
+         */
73 73
     public function makeRequest($http_verb, $method, $args = array(), $timeout = self::TIMEOUT)
74 74
     {
75 75
         $url = $this->api_endpoint . '/' . $method;
Please login to merge, or discard this patch.
src/SlackServiceProvider.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
         /**
17 17
          * Export the config file 
18 18
          * php artisan vendor:publish --provider="Sreedev\Slack\SlackServiceProvider" --tag="config"
19
-        **/
19
+         **/
20 20
         if ($this->app->runningInConsole()) {
21 21
 
22 22
             $this->publishes([
23
-              __DIR__.'/../config/config.php' => config_path('slack.php'),
23
+                __DIR__.'/../config/config.php' => config_path('slack.php'),
24 24
             ], 'config');
25 25
         
26
-          }
26
+            }
27 27
     }
28 28
     
29 29
     /**
Please login to merge, or discard this patch.