Completed
Push — master ( 4b8105...1fd21d )
by
unknown
01:33
created
src/SalesforceServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function register()
11 11
     {
12
-        $this->app->singleton('salesforce', function () {
12
+        $this->app->singleton('salesforce', function() {
13 13
             $authClient = new Client([
14 14
                 'headers' => [
15 15
                     'Accept' => 'application/json',
Please login to merge, or discard this patch.
src/SalesforceAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
         $this->id = $responseObject->id;
84 84
         $this->accessToken = $responseObject->access_token;
85 85
         $this->instanceUrl = $responseObject->instance_url;
86
-        $this->url = $responseObject->instance_url . $this->version['url'];
86
+        $this->url = $responseObject->instance_url.$this->version['url'];
87 87
 
88 88
         if ($this->accessToken !== null) {
89 89
             $this->authenticated = true;
Please login to merge, or discard this patch.
src/Objects/AbstractObject.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     /**
129 129
      * Run Salesforce query.
130 130
      *
131
-     * @param $query
131
+     * @param string $query
132 132
      *
133 133
      * @return mixed
134 134
      */
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
         ]));
35 35
 
36 36
         if (config('laravel-salesforce.disable_on_local') && app()->environment('local')) {
37
-            $response = (object)['success' => true, 'totalSize' => 0, 'id' => 'localRequestId', 'OwnerId' => 'localRequestId'];
37
+            $response = (object) ['success' => true, 'totalSize' => 0, 'id' => 'localRequestId', 'OwnerId' => 'localRequestId'];
38 38
         } else {
39 39
             try {
40 40
                 $response = json_decode(
41
-                    $this->salesforce->client->request($method, $this->salesforce->baseUrl . $url, $options)
41
+                    $this->salesforce->client->request($method, $this->salesforce->baseUrl.$url, $options)
42 42
                         ->getBody());
43 43
             } catch (ClientException $e) {
44 44
                 throw new SalesforceException($e->getMessage());
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function getVersion()
73 73
     {
74
-        return $this->sendRequest('GET', $this->salesforce->instanceUrl . '/services/data');
74
+        return $this->sendRequest('GET', $this->salesforce->instanceUrl.'/services/data');
75 75
     }
76 76
 
77 77
     /**
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function listOrganisationLimits()
81 81
     {
82
-        return $this->sendRequest('GET', $this->salesforce->instanceUrl . $this->version['url'] . '/limits');
82
+        return $this->sendRequest('GET', $this->salesforce->instanceUrl.$this->version['url'].'/limits');
83 83
     }
84 84
 
85 85
     /**
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function describeObject($objectName)
113 113
     {
114
-        return $this->sendRequest('GET', '/sobjects/' . $objectName . '/describe');
114
+        return $this->sendRequest('GET', '/sobjects/'.$objectName.'/describe');
115 115
     }
116 116
 
117 117
     /**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     public function describeBasicObject($objectName)
125 125
     {
126
-        return $this->sendRequest('GET', '/sobjects/' . $objectName);
126
+        return $this->sendRequest('GET', '/sobjects/'.$objectName);
127 127
     }
128 128
 
129 129
     /**
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      */
152 152
     public function get(string $id, array $fields = [])
153 153
     {
154
-        return $this->sendRequest('GET', "/sobjects/" . $this->getType() . "/$id", ['query' => $fields]);
154
+        return $this->sendRequest('GET', "/sobjects/".$this->getType()."/$id", ['query' => $fields]);
155 155
     }
156 156
 
157 157
     /**
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function update(string $id, array $params)
165 165
     {
166
-        $this->sendRequest('PATCH', "/sobjects/" . $this->getType() . "/$id",
166
+        $this->sendRequest('PATCH', "/sobjects/".$this->getType()."/$id",
167 167
             [
168 168
                 'json' => $params,
169 169
             ]
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      */
180 180
     public function create(array $params)
181 181
     {
182
-        $response = $this->sendRequest('POST', "/sobjects/" . $this->getType(), [
182
+        $response = $this->sendRequest('POST', "/sobjects/".$this->getType(), [
183 183
             'json' => $params,
184 184
         ]);
185 185
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      */
199 199
     public function delete(string $id)
200 200
     {
201
-        $this->sendRequest('DELETE', "/sobjects/" . $this->getType() . "/$id");
201
+        $this->sendRequest('DELETE', "/sobjects/".$this->getType()."/$id");
202 202
     }
203 203
 
204 204
     /**
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     {
213 213
         return $this->sendRequest(
214 214
             'GET',
215
-            '/analytics/reports/' . $id,
215
+            '/analytics/reports/'.$id,
216 216
             ['query' => ['includeDetails' => $includeDetails]]
217 217
         );
218 218
     }
Please login to merge, or discard this patch.
src/Salesforce.php 2 patches
Doc Comments   +13 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Create object dynamically
69 69
      *
70
-     * @param $method
70
+     * @param string $method
71 71
      * @param $args
72 72
      * @return bool
73 73
      */
@@ -83,6 +83,9 @@  discard block
 block discarded – undo
83 83
         return (new BaseObject($this, $type))->create($args[0]);
84 84
     }
85 85
 
86
+    /**
87
+     * @param string $method
88
+     */
86 89
     private function callUpdateOnObject($method, $args)
87 90
     {
88 91
         $type = substr($method, 6);
@@ -95,6 +98,9 @@  discard block
 block discarded – undo
95 98
         return (new BaseObject($this, $type))->update($type, $args[0]);
96 99
     }
97 100
 
101
+    /**
102
+     * @param string $method
103
+     */
98 104
     private function callDeleteOnObject($method, $args)
99 105
     {
100 106
         $type = substr($method, 6);
@@ -107,6 +113,9 @@  discard block
 block discarded – undo
107 113
         return (new BaseObject($this, $type))->delete($args[0]);
108 114
     }
109 115
 
116
+    /**
117
+     * @param string $method
118
+     */
110 119
     private function callGetOnObject($method, $args)
111 120
     {
112 121
         $type = substr($method, 3);
@@ -119,6 +128,9 @@  discard block
 block discarded – undo
119 128
         return (new BaseObject($this, $type))->get($args[0]);
120 129
     }
121 130
 
131
+    /**
132
+     * @param string $method
133
+     */
122 134
     private function callExistsOnObject($method, $args)
123 135
     {
124 136
         $type = substr($method, 6);
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     private function callCreateOnObject($method, $args)
75 75
     {
76 76
         $type = substr($method, 6);
77
-        $class = '\\Surge\\LaravelSalesforce\\Objects\\' . $type;
77
+        $class = '\\Surge\\LaravelSalesforce\\Objects\\'.$type;
78 78
 
79 79
         if (class_exists($class)) {
80 80
             return (new $class($this))->create($args[0]);
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     private function callUpdateOnObject($method, $args)
87 87
     {
88 88
         $type = substr($method, 6);
89
-        $class = '\\Surge\\LaravelSalesforce\\Objects\\' . $type;
89
+        $class = '\\Surge\\LaravelSalesforce\\Objects\\'.$type;
90 90
 
91 91
         if (class_exists($class)) {
92 92
             return (new $class($this))->update($args[0], $args[1]);
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     private function callDeleteOnObject($method, $args)
99 99
     {
100 100
         $type = substr($method, 6);
101
-        $class = '\\Surge\\LaravelSalesforce\\Objects\\' . $type;
101
+        $class = '\\Surge\\LaravelSalesforce\\Objects\\'.$type;
102 102
 
103 103
         if (class_exists($class)) {
104 104
             return (new $class($this))->delete($args[0]);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     private function callGetOnObject($method, $args)
111 111
     {
112 112
         $type = substr($method, 3);
113
-        $class = '\\Surge\\LaravelSalesforce\\Objects\\' . $type;
113
+        $class = '\\Surge\\LaravelSalesforce\\Objects\\'.$type;
114 114
 
115 115
         if (class_exists($class)) {
116 116
             return (new $class($this))->get($args[0]);
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     private function callExistsOnObject($method, $args)
123 123
     {
124 124
         $type = substr($method, 6);
125
-        $class = '\\Surge\\LaravelSalesforce\\Objects\\' . $type;
125
+        $class = '\\Surge\\LaravelSalesforce\\Objects\\'.$type;
126 126
 
127 127
         if (class_exists($class)) {
128 128
             return (new $class($this))->exists($args[0]);
Please login to merge, or discard this patch.
src/Objects/Account.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      * ]
24 24
      *
25 25
      *
26
-     * @param array $param to search
26
+     * @param array $params to search
27 27
      * @return bool|array
28 28
      */
29 29
     public function exists($params)
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@
 block discarded – undo
32 32
             return false;
33 33
         }
34 34
 
35
-        $query = 'SELECT Id, OwnerId  FROM ' . $this->getType() . ' WHERE RecordTypeId = \'' . config('laravel-salesforce.record_type.account') . '\'';
35
+        $query = 'SELECT Id, OwnerId  FROM '.$this->getType().' WHERE RecordTypeId = \''.config('laravel-salesforce.record_type.account').'\'';
36 36
 
37 37
         foreach ($params as $fieldName => $fieldValue) {
38
-            $query .= ' AND ' . $fieldName . '=\'' . addslashes(trim($fieldValue)) . '\'';
38
+            $query .= ' AND '.$fieldName.'=\''.addslashes(trim($fieldValue)).'\'';
39 39
         }
40 40
 
41 41
         $response = $this->query($query);
Please login to merge, or discard this patch.
src/Objects/Lead.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@
 block discarded – undo
34 34
             return false;
35 35
         }
36 36
 
37
-        $query = 'SELECT Id, OwnerId  FROM ' . $this->getType() . ' WHERE RecordTypeId = \'' . config('laravel-salesforce.record_type.lead') . '\'';
37
+        $query = 'SELECT Id, OwnerId  FROM '.$this->getType().' WHERE RecordTypeId = \''.config('laravel-salesforce.record_type.lead').'\'';
38 38
 
39 39
         foreach ($params as $fieldName => $fieldValue) {
40
-            $query .= ' AND ' . $fieldName . '=\'' . addslashes(trim($fieldValue)) . '\'';
40
+            $query .= ' AND '.$fieldName.'=\''.addslashes(trim($fieldValue)).'\'';
41 41
         }
42 42
 
43 43
         $response = $this->query($query);
Please login to merge, or discard this patch.