Completed
Push — master ( 3a38c4...0935b9 )
by Ryan
01:33
created
src/Resources/DealProperties.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function delete($name)
75 75
     {
76
-        $endpoint = 'https://api.hubapi.com/properties/v1/deals/properties/named/' . $name;
76
+        $endpoint = 'https://api.hubapi.com/properties/v1/deals/properties/named/'.$name;
77 77
         return $this->client->request('delete', $endpoint);
78 78
     }
79 79
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     {
154 154
         $endpoint = "https://api.hubapi.com/properties/v1/deals/groups/named/{$groupName}";
155 155
 
156
-        if($includeProperties){
156
+        if ($includeProperties) {
157 157
             $queryString = build_query_string(['includeProperties' => 'true']);
158 158
 
159 159
             return $this->client->request('get', $endpoint, [], $queryString);
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     {
175 175
         $endpoint = 'https://api.hubapi.com/properties/v1/deals/groups';
176 176
 
177
-        if($includeProperties){
177
+        if ($includeProperties) {
178 178
             $queryString = build_query_string(['includeProperties' => 'true']);
179 179
 
180 180
             return $this->client->request('get', $endpoint, [], $queryString);
Please login to merge, or discard this patch.