Completed
Push — master ( ccf14c...6dc88d )
by Ryan
01:33
created
src/Resources/Deals.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace SevenShores\Hubspot\Resources;
3 3
 
4
-use SevenShores\Hubspot\Exceptions\HubspotException;
5
-
6 4
 class Deals extends Resource
7 5
 {
8 6
     /**
Please login to merge, or discard this patch.
src/Resources/OAuth2.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,9 @@
 block discarded – undo
22 22
 			$scopeString = '';
23 23
 			foreach($scopesArray as $_index => $scopeStr)
24 24
 			{
25
-				if($_index>0)
26
-					$scopeString .= "%20";
25
+				if($_index>0) {
26
+									$scopeString .= "%20";
27
+				}
27 28
 
28 29
 				$scopeString .= $scopeStr;
29 30
 			}
Please login to merge, or discard this patch.